From patchwork Fri Jul 3 21:43:16 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11642891 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 6CE3260D for ; Fri, 3 Jul 2020 21:43:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 53B3C20885 for ; Fri, 3 Jul 2020 21:43:47 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="CWmIynj7" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727053AbgGCVnm (ORCPT ); Fri, 3 Jul 2020 17:43:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53312 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727028AbgGCVnl (ORCPT ); Fri, 3 Jul 2020 17:43:41 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4CA07C061794; Fri, 3 Jul 2020 14:43:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=PnMFSg5r6SGBqwW7k5DprCUnJT0eOsAtrGNbNi3wI6k=; b=CWmIynj7XkK69bfSe1uY4DZBG/ legw/0NwX6WbaQmhdpmZQesBgkMnlhDpwyuTwSc9Z4wtBN/gFpLh+LiUpSMAvPp+iRHa50f2LpsgT 26kll7uu9C7B1sfHoufOQkT17PngiLEZc3EBmD7qArn4W5Q3SoOVSayRftyEOG+68sSks2LYHqOAC dIFoQH9p4RSwReN8SatiAsfO4S/YAXelYrpm1C8BMWayf4OeivaHP/+WZmg82AUlOObM+imKfjobI xnvWw+Q/55PsV7RLc4PxOVrc8Zstgcz5+sIOXFc/K4/hpya54egjNsBAIZBsIPUyuWcD4zD9T35LQ 7b9oNTYA==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrTT7-0006uZ-Sh; Fri, 03 Jul 2020 21:43:38 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Ian Kent , autofs@vger.kernel.org, David Howells , linux-cachefs@redhat.com, Joel Becker , Christoph Hellwig , Alexander Viro , linux-fsdevel@vger.kernel.org, Eric Biggers , "Theodore Y . Ts'o" , linux-fscrypt@vger.kernel.org, Miklos Szeredi , linux-unionfs@vger.kernel.org Subject: [PATCH 01/10] Documentation: filesystems: autofs-mount-control: drop doubled words Date: Fri, 3 Jul 2020 14:43:16 -0700 Message-Id: <20200703214325.31036-2-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200703214325.31036-1-rdunlap@infradead.org> References: <20200703214325.31036-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Drop the doubled words "the" and "and". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Ian Kent Cc: autofs@vger.kernel.org Acked-by: Ian Kent --- Documentation/filesystems/autofs-mount-control.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- linux-next-20200701.orig/Documentation/filesystems/autofs-mount-control.rst +++ linux-next-20200701/Documentation/filesystems/autofs-mount-control.rst @@ -391,7 +391,7 @@ variation uses the path and optionally i set to an autofs mount type. The call returns 1 if this is a mount point and sets out.devid field to the device number of the mount and out.magic field to the relevant super block magic number (described below) or 0 if -it isn't a mountpoint. In both cases the the device number (as returned +it isn't a mountpoint. In both cases the device number (as returned by new_encode_dev()) is returned in out.devid field. If supplied with a file descriptor we're looking for a specific mount, @@ -399,12 +399,12 @@ not necessarily at the top of the mounte the descriptor corresponds to is considered a mountpoint if it is itself a mountpoint or contains a mount, such as a multi-mount without a root mount. In this case we return 1 if the descriptor corresponds to a mount -point and and also returns the super magic of the covering mount if there +point and also returns the super magic of the covering mount if there is one or 0 if it isn't a mountpoint. If a path is supplied (and the ioctlfd field is set to -1) then the path is looked up and is checked to see if it is the root of a mount. If a type is also given we are looking for a particular autofs mount and if -a match isn't found a fail is returned. If the the located path is the +a match isn't found a fail is returned. If the located path is the root of a mount 1 is returned along with the super magic of the mount or 0 otherwise. From patchwork Fri Jul 3 21:43:17 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11642893 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id D3F0F13BD for ; Fri, 3 Jul 2020 21:43:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B009020885 for ; Fri, 3 Jul 2020 21:43:47 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="vRPA0RBJ" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727079AbgGCVnr (ORCPT ); Fri, 3 Jul 2020 17:43:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53324 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727028AbgGCVnp (ORCPT ); Fri, 3 Jul 2020 17:43:45 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6FFC6C061794; Fri, 3 Jul 2020 14:43:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=hofn6sBAbTd2HcWy0kbqF2KoGz2MeYQfT0WYKeLl/94=; b=vRPA0RBJSRNx+4xaR47L24tptq BHkA0Mtx/7VoSGsa2aKDwsNNkntcBodFVXfxh5dJJvRlQE+jRFL2ORa3+bIcmDh+E6uwyxVOWm3y9 ooWTTRczp4CV8td/BUYUXa7mM42iTMzMqy+kEVaquBG6AvDKZ+Ue7rZwJX4WwXnqUVjlT432L2rpX iK51avkugZjnvNH3Kb8HguBYcJxI89tP93mCk8UxTYHgQpTqYNk4DAX53SrAAHU/314cKFrPT4R8V /KZxnYzBfEJn6cHi1djB5wJgCvUfiLjVOrsjspLfw3SEKPc335KgqwST6NuRlCNwuarPkZ6TEuAmf m1L97n4A==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrTTD-0006uZ-1T; Fri, 03 Jul 2020 21:43:43 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Ian Kent , autofs@vger.kernel.org, David Howells , linux-cachefs@redhat.com, Joel Becker , Christoph Hellwig , Alexander Viro , linux-fsdevel@vger.kernel.org, Eric Biggers , "Theodore Y . Ts'o" , linux-fscrypt@vger.kernel.org, Miklos Szeredi , linux-unionfs@vger.kernel.org Subject: [PATCH 02/10] Documentation: filesystems: caching/operations: drop doubled word Date: Fri, 3 Jul 2020 14:43:17 -0700 Message-Id: <20200703214325.31036-3-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200703214325.31036-1-rdunlap@infradead.org> References: <20200703214325.31036-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Drop the doubled word "be". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: David Howells Cc: linux-cachefs@redhat.com --- Documentation/filesystems/caching/operations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200701.orig/Documentation/filesystems/caching/operations.rst +++ linux-next-20200701/Documentation/filesystems/caching/operations.rst @@ -27,7 +27,7 @@ data storage and retrieval routines. It fscache_operation structs, though these are usually embedded into some other structure. -This facility is available to and expected to be be used by the cache backends, +This facility is available to and expected to be used by the cache backends, and FS-Cache will create operations and pass them off to the appropriate cache backend for completion. From patchwork Fri Jul 3 21:43:18 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11642897 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id E114D60D for ; Fri, 3 Jul 2020 21:43:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C9D992145D for ; Fri, 3 Jul 2020 21:43:55 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="K7vx/R/s" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727107AbgGCVnw (ORCPT ); Fri, 3 Jul 2020 17:43:52 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53340 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727028AbgGCVnu (ORCPT ); Fri, 3 Jul 2020 17:43:50 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9454DC061794; Fri, 3 Jul 2020 14:43:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=XgkoY4xveG3VkV8u/FmdfbDCcEsFmWj1mDtzRzE6Cb0=; b=K7vx/R/sSraYOl1w73NtPpHEGc dEiuafIPa6nEEOOyhC4Kc8RrPrfeKkDPtsWLWIJUHypVc/fHZ+f53HVF7Me603JAQ5o0fjvxoPDCN AKCxAQVRqUA6ME+vNUrawhygb3yEMXMbrfv6xBFb+D52zul+sGS15P8iqTldhAvK0eIe8JWqjFgCI aFOVn/OReNbY2enMAbxI9avXPuagwutCMCY+izJNOQN0ve6/uUTotikb5aErhgRqV7fq/Z4RZ77ax Qf84sNaEy3Mkm1LnszaEEYfq8LuGNNrTbbbd28k/+sA3reF5Gw+W3DqTXv+LHKyrBA57oBDEDqfYj lkljdg8w==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrTTI-0006uZ-4I; Fri, 03 Jul 2020 21:43:48 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Ian Kent , autofs@vger.kernel.org, David Howells , linux-cachefs@redhat.com, Joel Becker , Christoph Hellwig , Alexander Viro , linux-fsdevel@vger.kernel.org, Eric Biggers , "Theodore Y . Ts'o" , linux-fscrypt@vger.kernel.org, Miklos Szeredi , linux-unionfs@vger.kernel.org Subject: [PATCH 03/10] Documentation: filesystems: configfs: drop doubled word Date: Fri, 3 Jul 2020 14:43:18 -0700 Message-Id: <20200703214325.31036-4-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200703214325.31036-1-rdunlap@infradead.org> References: <20200703214325.31036-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Drop the doubled word "be". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Joel Becker Cc: Christoph Hellwig --- Documentation/filesystems/configfs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200701.orig/Documentation/filesystems/configfs.rst +++ linux-next-20200701/Documentation/filesystems/configfs.rst @@ -226,7 +226,7 @@ filename. configfs_attribute->ca_mode s If an attribute is readable and provides a ->show method, that method will be called whenever userspace asks for a read(2) on the attribute. If an attribute is writable and provides a ->store method, that method will be -be called whenever userspace asks for a write(2) on the attribute. +called whenever userspace asks for a write(2) on the attribute. struct configfs_bin_attribute ============================= From patchwork Fri Jul 3 21:43:19 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11642901 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id DCC1F60D for ; Fri, 3 Jul 2020 21:44:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C393120885 for ; Fri, 3 Jul 2020 21:44:00 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="FQY8eH7N" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727768AbgGCVn4 (ORCPT ); Fri, 3 Jul 2020 17:43:56 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53358 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727028AbgGCVn4 (ORCPT ); Fri, 3 Jul 2020 17:43:56 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D7493C061794; Fri, 3 Jul 2020 14:43:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=4dSawoUbToBjQYPQeKu/vzB/+jr94zPa4ftwUT26O9o=; b=FQY8eH7NIX5N2+6YzPa/p7i8cz MF2x/KxqTmwJuCuOd4UfLyGT5QFtwIU9fc5HnT2wmrLfh6JYKbBWA1s1aPI3FXnxw+qF7idP8vPAU 4uKGmx1Ewgs3akvMX3yIH0DE1Xqiayl+wYo/oIVQwtosnwnVX7zCNwsANO/IkAzVroVTZhfstH5rD FngNaGGHCn2X7P6rW+3uFQww3Rf6W45T3IXxMBnhV0K4PkIWL9+P7yeR2DGW9S2PWclqIX+M6Z51g 4L9aR7Ssy0XGRCqVszKCww80n5XEtshMOxIQh54yhrTswTiKZ/cfTTQm4I5uvdoucelySkuzV1LI0 3Xwoa/hQ==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrTTN-0006uZ-95; Fri, 03 Jul 2020 21:43:53 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Ian Kent , autofs@vger.kernel.org, David Howells , linux-cachefs@redhat.com, Joel Becker , Christoph Hellwig , Alexander Viro , linux-fsdevel@vger.kernel.org, Eric Biggers , "Theodore Y . Ts'o" , linux-fscrypt@vger.kernel.org, Miklos Szeredi , linux-unionfs@vger.kernel.org Subject: [PATCH 04/10] Documentation: filesystems: directory-locking: drop doubled word Date: Fri, 3 Jul 2020 14:43:19 -0700 Message-Id: <20200703214325.31036-5-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200703214325.31036-1-rdunlap@infradead.org> References: <20200703214325.31036-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Drop the doubled word "the". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Alexander Viro Cc: linux-fsdevel@vger.kernel.org --- Documentation/filesystems/directory-locking.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20200701.orig/Documentation/filesystems/directory-locking.rst +++ linux-next-20200701/Documentation/filesystems/directory-locking.rst @@ -28,7 +28,7 @@ RENAME_EXCHANGE in flags argument) lock if the target already exists, lock it. If the source is a non-directory, lock it. If we need to lock both, lock them in inode pointer order. Then call the method. All locks are exclusive. -NB: we might get away with locking the the source (and target in exchange +NB: we might get away with locking the source (and target in exchange case) shared. 5) link creation. Locking rules: @@ -56,7 +56,7 @@ rules: * call the method. All ->i_rwsem are taken exclusive. Again, we might get away with locking -the the source (and target in exchange case) shared. +the source (and target in exchange case) shared. The rules above obviously guarantee that all directories that are going to be read, modified or removed by method will be locked by caller. From patchwork Fri Jul 3 21:43:20 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11642907 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id BCDAD13BD for ; Fri, 3 Jul 2020 21:44:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 981D4208C7 for ; Fri, 3 Jul 2020 21:44:04 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="DYk4ml3k" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727792AbgGCVoD (ORCPT ); Fri, 3 Jul 2020 17:44:03 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53370 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726913AbgGCVoB (ORCPT ); Fri, 3 Jul 2020 17:44:01 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 43DD3C061794; Fri, 3 Jul 2020 14:44:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=QYt3pLrvEkgdE5J9HL0HcJrm5k49qsMnkbwk8AJ+Pa4=; b=DYk4ml3k/OpYg3wEdP54cuw5kr 9boTO/p72S7yr71IB6JW1UzHP60tl2Rjpizt8RMtwF/N+xBTrN/W43HOaKN7e/KUAlKoWB18QOBGd 4HJZTZ7ziQNpfeu2fN/PcKVghE+Y45mLZGCntE7MFVoTk+9DXhBS+VqbOUNF2dLgx5EvJOKa9EAvR BFLuKH6X7/OrHc2z2e3CwCxWdlHV5roAefwDtQMbQbcN+J/KMVXX/j6y8ljQqa3QBTtaOeSrdQHx7 9/JSu6jVUxiH8uZayeLZMvfnbKE5ET4/3GgZrnomJyH2UWYzO6pCIOvmp+Tj9pc8cVvEX3arI9ZRg btS/XlIg==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrTTS-0006uZ-Ch; Fri, 03 Jul 2020 21:43:58 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Ian Kent , autofs@vger.kernel.org, David Howells , linux-cachefs@redhat.com, Joel Becker , Christoph Hellwig , Alexander Viro , linux-fsdevel@vger.kernel.org, Eric Biggers , "Theodore Y . Ts'o" , linux-fscrypt@vger.kernel.org, Miklos Szeredi , linux-unionfs@vger.kernel.org Subject: [PATCH 05/10] Documentation: filesystems: fsverity: drop doubled word Date: Fri, 3 Jul 2020 14:43:20 -0700 Message-Id: <20200703214325.31036-6-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200703214325.31036-1-rdunlap@infradead.org> References: <20200703214325.31036-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Drop the doubled word "the". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Eric Biggers Cc: Theodore Y. Ts'o Cc: linux-fscrypt@vger.kernel.org Acked-by: Eric Biggers --- Documentation/filesystems/fsverity.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200701.orig/Documentation/filesystems/fsverity.rst +++ linux-next-20200701/Documentation/filesystems/fsverity.rst @@ -659,7 +659,7 @@ weren't already directly answered in oth retrofit existing filesystems with new consistency mechanisms. Data journalling is available on ext4, but is very slow. - - Rebuilding the the Merkle tree after every write, which would be + - Rebuilding the Merkle tree after every write, which would be extremely inefficient. Alternatively, a different authenticated dictionary structure such as an "authenticated skiplist" could be used. However, this would be far more complex. From patchwork Fri Jul 3 21:43:21 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11642911 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id ABB0113BD for ; Fri, 3 Jul 2020 21:44:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 94BA8208C7 for ; Fri, 3 Jul 2020 21:44:11 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="rZ/20u0T" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727814AbgGCVoH (ORCPT ); Fri, 3 Jul 2020 17:44:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53386 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726913AbgGCVoG (ORCPT ); Fri, 3 Jul 2020 17:44:06 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3E56DC061794; Fri, 3 Jul 2020 14:44:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=+9BMx8vXl0RZqSK+MgrF6zLZBmku3oa+32qwOecwZUg=; b=rZ/20u0Ti2mJi1e37mKEYHghIH 60xqLsz5GHX+Pk01aa37T0Cb+T+CwvDTnRTWgjcK6latUX3pIy9dwcRPVCSLqvbBwljN/hr06vHr8 Q0e+ujHDCDJMcY+VZ/vOLA1y3hf5dhGd6SI5fKUGJ5z5/o6b1eywWjp9IgjzUrEml6fuuom401BOe +PBWkK6XoLG4G2ZBP/evAgydhGDU+5KLAuUL4fqxqzZA91ViZleW05VLi5UYv8FlZkWNkDVzYoHSY crsyxR+8FY1QnRmGEw4z2r91dHH2gtAFH5axuW4KpwcjGGofQc8HTaaE+Z3QxHWXbyD3bCMyAQ6jk p8ZQHPBQ==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrTTX-0006uZ-SN; Fri, 03 Jul 2020 21:44:04 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Ian Kent , autofs@vger.kernel.org, David Howells , linux-cachefs@redhat.com, Joel Becker , Christoph Hellwig , Alexander Viro , linux-fsdevel@vger.kernel.org, Eric Biggers , "Theodore Y . Ts'o" , linux-fscrypt@vger.kernel.org, Miklos Szeredi , linux-unionfs@vger.kernel.org Subject: [PATCH 06/10] Documentation: filesystems: mount_api: drop doubled word Date: Fri, 3 Jul 2020 14:43:21 -0700 Message-Id: <20200703214325.31036-7-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200703214325.31036-1-rdunlap@infradead.org> References: <20200703214325.31036-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Drop the doubled word "struct". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Alexander Viro Cc: linux-fsdevel@vger.kernel.org --- Documentation/filesystems/mount_api.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20200701.orig/Documentation/filesystems/mount_api.rst +++ linux-next-20200701/Documentation/filesystems/mount_api.rst @@ -213,7 +213,7 @@ The filesystem context points to a table void (*free)(struct fs_context *fc); int (*dup)(struct fs_context *fc, struct fs_context *src_fc); int (*parse_param)(struct fs_context *fc, - struct struct fs_parameter *param); + struct fs_parameter *param); int (*parse_monolithic)(struct fs_context *fc, void *data); int (*get_tree)(struct fs_context *fc); int (*reconfigure)(struct fs_context *fc); @@ -247,7 +247,7 @@ manage the filesystem context. They are * :: int (*parse_param)(struct fs_context *fc, - struct struct fs_parameter *param); + struct fs_parameter *param); Called when a parameter is being added to the filesystem context. param points to the key name and maybe a value object. VFS-specific options From patchwork Fri Jul 3 21:43:22 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11642919 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 28CDB13BD for ; Fri, 3 Jul 2020 21:44:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 10D1E208C7 for ; Fri, 3 Jul 2020 21:44:14 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="KEMj7EoG" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727838AbgGCVoN (ORCPT ); Fri, 3 Jul 2020 17:44:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53404 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726913AbgGCVoM (ORCPT ); Fri, 3 Jul 2020 17:44:12 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 306D6C061794; Fri, 3 Jul 2020 14:44:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=incZpa5IzYuxKoiVY1wfaG2NDrHQ8Af3HlDfc4ZtKDk=; b=KEMj7EoGqSbPuk7g2qxJF1qUP/ CY6kqOAsh2Juj8iQvnuFEy2bV69j9JSGthAPu2m68ycrMUgtQM72hXhI6P/dQTowSl0qhQYAi19fG KPgIaXtFNhbtYxo2657TsAWYkg4bHcxNFwDVQ2ZPeoMCoI8SehbPfp/UPte4cgP8uaa4Bi+8yQVnA EdGeZBlNiZ3yPuC4TFSgkBJPUMfS2/0nHSRbTBk/Eh7WgpMt5zPHsB2LMC0CMrlkLwDFIbTj5szCn t0gH80gG70GITOIlbUZY4Oudy0vu59YfhplxD9y3riRQuMaUf+oBfyWccwA5NI+1XdA+fvi9XceNV e1WJ04ow==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrTTc-0006uZ-W1; Fri, 03 Jul 2020 21:44:10 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Ian Kent , autofs@vger.kernel.org, David Howells , linux-cachefs@redhat.com, Joel Becker , Christoph Hellwig , Alexander Viro , linux-fsdevel@vger.kernel.org, Eric Biggers , "Theodore Y . Ts'o" , linux-fscrypt@vger.kernel.org, Miklos Szeredi , linux-unionfs@vger.kernel.org Subject: [PATCH 07/10] Documentation: filesystems: overlayfs: drop doubled word Date: Fri, 3 Jul 2020 14:43:22 -0700 Message-Id: <20200703214325.31036-8-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200703214325.31036-1-rdunlap@infradead.org> References: <20200703214325.31036-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Drop the doubled word "the". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Miklos Szeredi Cc: linux-unionfs@vger.kernel.org --- Documentation/filesystems/overlayfs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200701.orig/Documentation/filesystems/overlayfs.rst +++ linux-next-20200701/Documentation/filesystems/overlayfs.rst @@ -328,7 +328,7 @@ the time of copy (on-demand vs. up-front Multiple lower layers --------------------- -Multiple lower layers can now be given using the the colon (":") as a +Multiple lower layers can now be given using the colon (":") as a separator character between the directory names. For example: mount -t overlay overlay -olowerdir=/lower1:/lower2:/lower3 /merged From patchwork Fri Jul 3 21:43:23 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11642921 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 44F8D13BD for ; Fri, 3 Jul 2020 21:44:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2120F20BED for ; Fri, 3 Jul 2020 21:44:19 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="EvFYgB3H" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727854AbgGCVoS (ORCPT ); Fri, 3 Jul 2020 17:44:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53416 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726913AbgGCVoR (ORCPT ); Fri, 3 Jul 2020 17:44:17 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4C936C061794; Fri, 3 Jul 2020 14:44:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=iC52qoRmLcwFciCkqPwzA3sza3CsSIpvy4KRurXO10U=; b=EvFYgB3HkAOfgpEW7n7DPinnpX GB+9PIK2jY6Yw9kFEB0QxKEI/gUDO+bLzbVPabFSUUrZQ/gx5dkP0MjBLxM9U8s1qc9xsXcor7/GK f2MsQZ8QMUI7+A1REYGNfbtH/cRbnZB9TSh80Y8kFSjIMPQQam2sbBt0p9kB4h6MuOeWDg8wkccxH hoGLlNQNlOiJ94RizOjbZZEXglwOTyUMEYAl5Q1uHGMReVFoDS0azqtvwwDfLZQOR2F7QkBsJC6g1 bLNFIdD8TkDKf2unNALJzzVJyRYJLLOlObcy/XKj8yYJVULZrBQUFRRkBHlrv2vaBOIn6Uganrj0M dSlXFhgA==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrTTi-0006uZ-Sl; Fri, 03 Jul 2020 21:44:15 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Ian Kent , autofs@vger.kernel.org, David Howells , linux-cachefs@redhat.com, Joel Becker , Christoph Hellwig , Alexander Viro , linux-fsdevel@vger.kernel.org, Eric Biggers , "Theodore Y . Ts'o" , linux-fscrypt@vger.kernel.org, Miklos Szeredi , linux-unionfs@vger.kernel.org Subject: [PATCH 08/10] Documentation: filesystems: path-lookup: drop doubled word Date: Fri, 3 Jul 2020 14:43:23 -0700 Message-Id: <20200703214325.31036-9-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200703214325.31036-1-rdunlap@infradead.org> References: <20200703214325.31036-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Drop the doubled word "to". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Alexander Viro Cc: linux-fsdevel@vger.kernel.org --- Documentation/filesystems/path-lookup.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200701.orig/Documentation/filesystems/path-lookup.rst +++ linux-next-20200701/Documentation/filesystems/path-lookup.rst @@ -1365,7 +1365,7 @@ as well as blocking ".." if it would jum resolution of "..". Magic-links are also blocked. ``LOOKUP_IN_ROOT`` resolves all path components as though the starting point -were the filesystem root. ``nd_jump_root()`` brings the resolution back to to +were the filesystem root. ``nd_jump_root()`` brings the resolution back to the starting point, and ".." at the starting point will act as a no-op. As with ``LOOKUP_BENEATH``, ``rename_lock`` and ``mount_lock`` are used to detect attacks against ".." resolution. Magic-links are also blocked. From patchwork Fri Jul 3 21:43:24 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11642927 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 10B1960D for ; Fri, 3 Jul 2020 21:44:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id ED3C0208C7 for ; Fri, 3 Jul 2020 21:44:27 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="TJaW7ulg" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727871AbgGCVoX (ORCPT ); Fri, 3 Jul 2020 17:44:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53432 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726753AbgGCVoX (ORCPT ); Fri, 3 Jul 2020 17:44:23 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 887D6C061794; Fri, 3 Jul 2020 14:44:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=l2BgVRrhoOdfEaISQXm1bK19K/APf6om9UNXwiHsPO0=; b=TJaW7ulgeNqNF0cPjPw4MsUVNF yfdL+Lxhuges+yTUAWuLc9NuC0ZoUj3AZU+sSEZAOXgwOOFenIKOjVDGkGh/bySX10kZptjVCyi6L mcU5jDslUFp7G0rwVl3FgIUAZsRWub40wbEOqSHFCj+DVwprEX9yrb18SquoqM4IUPJkan9+4lKcy aadqYoyKqMOlXYaqjzuYz/6m+J7AWmfAZo20FStZX+R+DmPr9Ro06+NzHU7IaicKmU7XEtT+DmqLE 7nA643wa8bca5oaky7wMg9PLQ+oU0PyNKqplDdhonPLEnba5V+62izf71qr1tUg+wZfpcOueM0EYT mBRBfj6w==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrTTo-0006uZ-1P; Fri, 03 Jul 2020 21:44:20 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Ian Kent , autofs@vger.kernel.org, David Howells , linux-cachefs@redhat.com, Joel Becker , Christoph Hellwig , Alexander Viro , linux-fsdevel@vger.kernel.org, Eric Biggers , "Theodore Y . Ts'o" , linux-fscrypt@vger.kernel.org, Miklos Szeredi , linux-unionfs@vger.kernel.org Subject: [PATCH 09/10] Documentation: filesystems: sysfs-tagging: drop doubled word Date: Fri, 3 Jul 2020 14:43:24 -0700 Message-Id: <20200703214325.31036-10-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200703214325.31036-1-rdunlap@infradead.org> References: <20200703214325.31036-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Drop the doubled word "the". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Alexander Viro Cc: linux-fsdevel@vger.kernel.org --- Documentation/filesystems/sysfs-tagging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200701.orig/Documentation/filesystems/sysfs-tagging.rst +++ linux-next-20200701/Documentation/filesystems/sysfs-tagging.rst @@ -15,7 +15,7 @@ To avoid that problem and allow existing namespaces to see the same interface that is currently presented in sysfs, sysfs now has tagging directory support. -By using the network namespace pointers as tags to separate out the +By using the network namespace pointers as tags to separate out the sysfs directory entries we ensure that we don't have conflicts in the directories and applications only see a limited set of the network devices. From patchwork Fri Jul 3 21:43:25 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11642929 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 68FB260D for ; Fri, 3 Jul 2020 21:44:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4E30020EDD for ; Fri, 3 Jul 2020 21:44:36 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="LxgYlyiP" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727894AbgGCVoc (ORCPT ); Fri, 3 Jul 2020 17:44:32 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53446 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726753AbgGCVo1 (ORCPT ); Fri, 3 Jul 2020 17:44:27 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A02B5C061794; Fri, 3 Jul 2020 14:44:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=ILpmrV2eNPdvPeK1dECfENZEkUmBXji6ftIM6D551pA=; b=LxgYlyiPvBUWMgCB8mPS2nWUEx q7v6Efl3XLXne3UNqnWGJRg2PGPzBc1ZF9G2OnL9ptKDcQf9xhrMj/jL/+XWcOsD68Bk0MAuKN76b VsujYhPeiH2eCar8Hsn8o4BccgaTxFosKGd2FdLyY0gXPS2OXm9p/QXdxPk8eWT3+nUp1J7URpSnU dqvC5YRWWotE1l07bt30zbXD8FBAc212qkG+SJKOfJiz7F4idMT0YvGUVCrv4BPxi86OzhOSuMhZA +nByh+A/0oXcGRYogct2TVyQJlkIk+BnH1FoUg+C+lcM6RZ4BXAkfQGPzNEVkR8spk+BxbPmNiQ+y 7Xvn/c8Q==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrTTt-0006uZ-7v; Fri, 03 Jul 2020 21:44:25 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Ian Kent , autofs@vger.kernel.org, David Howells , linux-cachefs@redhat.com, Joel Becker , Christoph Hellwig , Alexander Viro , linux-fsdevel@vger.kernel.org, Eric Biggers , "Theodore Y . Ts'o" , linux-fscrypt@vger.kernel.org, Miklos Szeredi , linux-unionfs@vger.kernel.org Subject: [PATCH 10/10] Documentation: filesystems: vfs: drop doubled words Date: Fri, 3 Jul 2020 14:43:25 -0700 Message-Id: <20200703214325.31036-11-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200703214325.31036-1-rdunlap@infradead.org> References: <20200703214325.31036-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org Drop the doubled words "the". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Alexander Viro Cc: linux-fsdevel@vger.kernel.org --- Documentation/filesystems/vfs.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20200701.orig/Documentation/filesystems/vfs.rst +++ linux-next-20200701/Documentation/filesystems/vfs.rst @@ -392,7 +392,7 @@ Extended attributes are name:value pairs ``set`` Called by the VFS to set the value of a particular extended attribute. When the new value is NULL, called to remove a - particular extended attribute. This method is called by the the + particular extended attribute. This method is called by the setxattr(2) and removexattr(2) system calls. When none of the xattr handlers of a filesystem match the specified @@ -652,7 +652,7 @@ at any point after PG_Dirty is clear. O PG_Writeback is cleared. Writeback makes use of a writeback_control structure to direct the -operations. This gives the the writepage and writepages operations some +operations. This gives the writepage and writepages operations some information about the nature of and reason for the writeback request, and the constraints under which it is being done. It is also used to return information back to the caller about the result of a writepage or