spell check all strings and comments
authorErez_Zadok <ezk@cs.sunysb.edu>
Thu, 31 May 2007 19:53:28 +0000 (15:53 -0400)
committerErez Zadok <ezk@cs.sunysb.edu>
Tue, 31 Jan 2012 04:53:42 +0000 (23:53 -0500)
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
fs/unionfs/fanout.h
fs/unionfs/mmap.c
fs/unionfs/rename.c
fs/unionfs/super.c

index 6e9a89f86e63b294f7bf3f4c2d888f7bd87d0fa9..f21f23a4a8ac73dcaa70a2d3f17c482b63aa39e8 100644 (file)
@@ -58,7 +58,7 @@ static inline void new_branch_id(struct super_block *sb, int index)
 /*
  * Find new index of matching branch with an existing superblock a a known
  * (possibly old) id.  This is needed because branches could have been
- * added/deleted causing the branchs of any open files to shift.
+ * added/deleted causing the branches of any open files to shift.
  *
  * @sb: the new superblock which may have new/different branch IDs
  * @id: the old/existing id we're looking for
index c79591577a47192b57463ee9a474de46bd737dd2..82d409518db541ab0aec885fac2d53f6afbc5975 100644 (file)
@@ -21,7 +21,7 @@
 
 /*
  * Unionfs doesn't implement ->writepages, which is OK with the VFS and
- * nkeeps our code simpler and smaller.  Nevertheless, somehow, our own
+ * keeps our code simpler and smaller.  Nevertheless, somehow, our own
  * ->writepage must be called so we can sync the upper pages with the lower
  * pages: otherwise data changed at the upper layer won't get written to the
  * lower layer.
index 3f6366a9983a25f54fc0023c296a08a68480ddb7..0bf80482493c57daab27fcc74c004d973b8ef05b 100644 (file)
@@ -143,8 +143,8 @@ out:
 }
 
 /*
- * Main rename code.  This is sufficienly complex, that it's documented in
- * Docmentation/filesystems/unionfs/rename.txt.  This routine calls
+ * Main rename code.  This is sufficiently complex, that it's documented in
+ * Documentation/filesystems/unionfs/rename.txt.  This routine calls
  * __unionfs_rename() above to perform some of the work.
  */
 static int do_unionfs_rename(struct inode *old_dir,
index 0a12a168189f16b7c47148c1e675361dc92407ba..c5c0933cd47a925f8f07a4e3e0bbcccd6d2719ba 100644 (file)
@@ -135,7 +135,7 @@ static int unionfs_statfs(struct dentry *dentry, struct kstatfs *buf)
        /* set return buf to our f/s to avoid confusing user-level utils */
        buf->f_type = UNIONFS_SUPER_MAGIC;
        /*
-        * Our maximum file name can is shorter bya few bytes because every
+        * Our maximum file name can is shorter by a few bytes because every
         * file name could potentially be whited-out.
         *
         * XXX: this restriction goes away with ODF.