linux-unionfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/10] Documentation: filesystems: eliminate duplicated words
@ 2020-07-03 21:43 Randy Dunlap
  2020-07-03 21:43 ` [PATCH 01/10] Documentation: filesystems: autofs-mount-control: drop doubled words Randy Dunlap
                   ` (10 more replies)
  0 siblings, 11 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Fix doubled words in filesystems files.


Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Ian Kent <raven@themaw.net>
Cc: autofs@vger.kernel.org
Cc: David Howells <dhowells@redhat.com>
Cc: linux-cachefs@redhat.com
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: linux-fsdevel@vger.kernel.org
Cc: Eric Biggers <ebiggers@kernel.org>
Cc: Theodore Y. Ts'o <tytso@mit.edu>
Cc: linux-fscrypt@vger.kernel.org
Cc: Miklos Szeredi <miklos@szeredi.hu>
Cc: linux-unionfs@vger.kernel.org


 Documentation/filesystems/autofs-mount-control.rst |    6 +++---
 Documentation/filesystems/caching/operations.rst   |    2 +-
 Documentation/filesystems/configfs.rst             |    2 +-
 Documentation/filesystems/directory-locking.rst    |    4 ++--
 Documentation/filesystems/fsverity.rst             |    2 +-
 Documentation/filesystems/mount_api.rst            |    4 ++--
 Documentation/filesystems/overlayfs.rst            |    2 +-
 Documentation/filesystems/path-lookup.rst          |    2 +-
 Documentation/filesystems/sysfs-tagging.rst        |    2 +-
 Documentation/filesystems/vfs.rst                  |    4 ++--
 10 files changed, 15 insertions(+), 15 deletions(-)

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 01/10] Documentation: filesystems: autofs-mount-control: drop doubled words
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
@ 2020-07-03 21:43 ` Randy Dunlap
  2020-07-06  0:15   ` Ian Kent
  2020-07-03 21:43 ` [PATCH 02/10] Documentation: filesystems: caching/operations: drop doubled word Randy Dunlap
                   ` (9 subsequent siblings)
  10 siblings, 1 reply; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Drop the doubled words "the" and "and".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Ian Kent <raven@themaw.net>
Cc: autofs@vger.kernel.org
---
 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.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 02/10] Documentation: filesystems: caching/operations: drop doubled word
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
  2020-07-03 21:43 ` [PATCH 01/10] Documentation: filesystems: autofs-mount-control: drop doubled words Randy Dunlap
@ 2020-07-03 21:43 ` Randy Dunlap
  2020-07-03 21:43 ` [PATCH 03/10] Documentation: filesystems: configfs: " Randy Dunlap
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Drop the doubled word "be".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: David Howells <dhowells@redhat.com>
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.
 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 03/10] Documentation: filesystems: configfs: drop doubled word
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
  2020-07-03 21:43 ` [PATCH 01/10] Documentation: filesystems: autofs-mount-control: drop doubled words Randy Dunlap
  2020-07-03 21:43 ` [PATCH 02/10] Documentation: filesystems: caching/operations: drop doubled word Randy Dunlap
@ 2020-07-03 21:43 ` Randy Dunlap
  2020-07-03 21:43 ` [PATCH 04/10] Documentation: filesystems: directory-locking: " Randy Dunlap
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Drop the doubled word "be".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Christoph Hellwig <hch@lst.de>
---
 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
 =============================

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 04/10] Documentation: filesystems: directory-locking: drop doubled word
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
                   ` (2 preceding siblings ...)
  2020-07-03 21:43 ` [PATCH 03/10] Documentation: filesystems: configfs: " Randy Dunlap
@ 2020-07-03 21:43 ` Randy Dunlap
  2020-07-03 21:43 ` [PATCH 05/10] Documentation: filesystems: fsverity: " Randy Dunlap
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Drop the doubled word "the".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
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.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 05/10] Documentation: filesystems: fsverity: drop doubled word
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
                   ` (3 preceding siblings ...)
  2020-07-03 21:43 ` [PATCH 04/10] Documentation: filesystems: directory-locking: " Randy Dunlap
@ 2020-07-03 21:43 ` Randy Dunlap
  2020-07-07 18:10   ` Eric Biggers
  2020-07-03 21:43 ` [PATCH 06/10] Documentation: filesystems: mount_api: " Randy Dunlap
                   ` (5 subsequent siblings)
  10 siblings, 1 reply; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Drop the doubled word "the".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Eric Biggers <ebiggers@kernel.org>
Cc: Theodore Y. Ts'o <tytso@mit.edu>
Cc: linux-fscrypt@vger.kernel.org
---
 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.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 06/10] Documentation: filesystems: mount_api: drop doubled word
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
                   ` (4 preceding siblings ...)
  2020-07-03 21:43 ` [PATCH 05/10] Documentation: filesystems: fsverity: " Randy Dunlap
@ 2020-07-03 21:43 ` Randy Dunlap
  2020-07-03 21:43 ` [PATCH 07/10] Documentation: filesystems: overlayfs: " Randy Dunlap
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Drop the doubled word "struct".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 07/10] Documentation: filesystems: overlayfs: drop doubled word
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
                   ` (5 preceding siblings ...)
  2020-07-03 21:43 ` [PATCH 06/10] Documentation: filesystems: mount_api: " Randy Dunlap
@ 2020-07-03 21:43 ` Randy Dunlap
  2020-07-03 21:43 ` [PATCH 08/10] Documentation: filesystems: path-lookup: " Randy Dunlap
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Drop the doubled word "the".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Miklos Szeredi <miklos@szeredi.hu>
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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 08/10] Documentation: filesystems: path-lookup: drop doubled word
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
                   ` (6 preceding siblings ...)
  2020-07-03 21:43 ` [PATCH 07/10] Documentation: filesystems: overlayfs: " Randy Dunlap
@ 2020-07-03 21:43 ` Randy Dunlap
  2020-07-03 21:43 ` [PATCH 09/10] Documentation: filesystems: sysfs-tagging: " Randy Dunlap
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Drop the doubled word "to".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
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.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 09/10] Documentation: filesystems: sysfs-tagging: drop doubled word
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
                   ` (7 preceding siblings ...)
  2020-07-03 21:43 ` [PATCH 08/10] Documentation: filesystems: path-lookup: " Randy Dunlap
@ 2020-07-03 21:43 ` Randy Dunlap
  2020-07-03 21:43 ` [PATCH 10/10] Documentation: filesystems: vfs: drop doubled words Randy Dunlap
  2020-07-05 20:44 ` [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Jonathan Corbet
  10 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Drop the doubled word "the".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
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.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 10/10] Documentation: filesystems: vfs: drop doubled words
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
                   ` (8 preceding siblings ...)
  2020-07-03 21:43 ` [PATCH 09/10] Documentation: filesystems: sysfs-tagging: " Randy Dunlap
@ 2020-07-03 21:43 ` Randy Dunlap
  2020-07-05 20:44 ` [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Jonathan Corbet
  10 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 21:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Eric Biggers,
	Theodore Y . Ts'o, linux-fscrypt, Miklos Szeredi,
	linux-unionfs

Drop the doubled words "the".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
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

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 00/10] Documentation: filesystems: eliminate duplicated words
  2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
                   ` (9 preceding siblings ...)
  2020-07-03 21:43 ` [PATCH 10/10] Documentation: filesystems: vfs: drop doubled words Randy Dunlap
@ 2020-07-05 20:44 ` Jonathan Corbet
  10 siblings, 0 replies; 14+ messages in thread
From: Jonathan Corbet @ 2020-07-05 20:44 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: linux-kernel, linux-doc, Ian Kent, autofs, David Howells,
	linux-cachefs, Joel Becker, Christoph Hellwig, Alexander Viro,
	linux-fsdevel, Eric Biggers, Theodore Y . Ts'o,
	linux-fscrypt, Miklos Szeredi, linux-unionfs

On Fri,  3 Jul 2020 14:43:15 -0700
Randy Dunlap <rdunlap@infradead.org> wrote:

> Fix doubled words in filesystems files.
> 
> 
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: linux-doc@vger.kernel.org
> Cc: Ian Kent <raven@themaw.net>
> Cc: autofs@vger.kernel.org
> Cc: David Howells <dhowells@redhat.com>
> Cc: linux-cachefs@redhat.com
> Cc: Joel Becker <jlbec@evilplan.org>
> Cc: Christoph Hellwig <hch@lst.de>
> Cc: Alexander Viro <viro@zeniv.linux.org.uk>
> Cc: linux-fsdevel@vger.kernel.org
> Cc: Eric Biggers <ebiggers@kernel.org>
> Cc: Theodore Y. Ts'o <tytso@mit.edu>
> Cc: linux-fscrypt@vger.kernel.org
> Cc: Miklos Szeredi <miklos@szeredi.hu>
> Cc: linux-unionfs@vger.kernel.org
> 
> 
>  Documentation/filesystems/autofs-mount-control.rst |    6 +++---
>  Documentation/filesystems/caching/operations.rst   |    2 +-
>  Documentation/filesystems/configfs.rst             |    2 +-
>  Documentation/filesystems/directory-locking.rst    |    4 ++--
>  Documentation/filesystems/fsverity.rst             |    2 +-
>  Documentation/filesystems/mount_api.rst            |    4 ++--
>  Documentation/filesystems/overlayfs.rst            |    2 +-
>  Documentation/filesystems/path-lookup.rst          |    2 +-
>  Documentation/filesystems/sysfs-tagging.rst        |    2 +-
>  Documentation/filesystems/vfs.rst                  |    4 ++--
>  10 files changed, 15 insertions(+), 15 deletions(-)
> 
Applied, thanks.

jon

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 01/10] Documentation: filesystems: autofs-mount-control: drop doubled words
  2020-07-03 21:43 ` [PATCH 01/10] Documentation: filesystems: autofs-mount-control: drop doubled words Randy Dunlap
@ 2020-07-06  0:15   ` Ian Kent
  0 siblings, 0 replies; 14+ messages in thread
From: Ian Kent @ 2020-07-06  0:15 UTC (permalink / raw)
  To: Randy Dunlap, linux-kernel
  Cc: Jonathan Corbet, linux-doc, autofs, David Howells, linux-cachefs,
	Joel Becker, Christoph Hellwig, Alexander Viro, linux-fsdevel,
	Eric Biggers, Theodore Y . Ts'o, linux-fscrypt,
	Miklos Szeredi, linux-unionfs

On Fri, 2020-07-03 at 14:43 -0700, Randy Dunlap wrote:
> Drop the doubled words "the" and "and".
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: linux-doc@vger.kernel.org
> Cc: Ian Kent <raven@themaw.net>

Acked-by: Ian Kent <raven@themaw.net>

> Cc: autofs@vger.kernel.org
> ---
>  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.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 05/10] Documentation: filesystems: fsverity: drop doubled word
  2020-07-03 21:43 ` [PATCH 05/10] Documentation: filesystems: fsverity: " Randy Dunlap
@ 2020-07-07 18:10   ` Eric Biggers
  0 siblings, 0 replies; 14+ messages in thread
From: Eric Biggers @ 2020-07-07 18:10 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: linux-kernel, Jonathan Corbet, linux-doc, Ian Kent, autofs,
	David Howells, linux-cachefs, Joel Becker, Christoph Hellwig,
	Alexander Viro, linux-fsdevel, Theodore Y . Ts'o,
	linux-fscrypt, Miklos Szeredi, linux-unionfs

On Fri, Jul 03, 2020 at 02:43:20PM -0700, Randy Dunlap wrote:
> Drop the doubled word "the".
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: linux-doc@vger.kernel.org
> Cc: Eric Biggers <ebiggers@kernel.org>
> Cc: Theodore Y. Ts'o <tytso@mit.edu>
> Cc: linux-fscrypt@vger.kernel.org
> ---
>  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.

Acked-by: Eric Biggers <ebiggers@google.com>

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2020-07-07 18:10 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-03 21:43 [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Randy Dunlap
2020-07-03 21:43 ` [PATCH 01/10] Documentation: filesystems: autofs-mount-control: drop doubled words Randy Dunlap
2020-07-06  0:15   ` Ian Kent
2020-07-03 21:43 ` [PATCH 02/10] Documentation: filesystems: caching/operations: drop doubled word Randy Dunlap
2020-07-03 21:43 ` [PATCH 03/10] Documentation: filesystems: configfs: " Randy Dunlap
2020-07-03 21:43 ` [PATCH 04/10] Documentation: filesystems: directory-locking: " Randy Dunlap
2020-07-03 21:43 ` [PATCH 05/10] Documentation: filesystems: fsverity: " Randy Dunlap
2020-07-07 18:10   ` Eric Biggers
2020-07-03 21:43 ` [PATCH 06/10] Documentation: filesystems: mount_api: " Randy Dunlap
2020-07-03 21:43 ` [PATCH 07/10] Documentation: filesystems: overlayfs: " Randy Dunlap
2020-07-03 21:43 ` [PATCH 08/10] Documentation: filesystems: path-lookup: " Randy Dunlap
2020-07-03 21:43 ` [PATCH 09/10] Documentation: filesystems: sysfs-tagging: " Randy Dunlap
2020-07-03 21:43 ` [PATCH 10/10] Documentation: filesystems: vfs: drop doubled words Randy Dunlap
2020-07-05 20:44 ` [PATCH 00/10] Documentation: filesystems: eliminate duplicated words Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).