cleanup: remove trailing spaces
authorErez_Zadok <ezk@cs.sunysb.edu>
Sat, 24 Mar 2007 21:41:57 +0000 (17:41 -0400)
committerErez Zadok <ezk@cs.sunysb.edu>
Mon, 12 Jan 2009 23:20:22 +0000 (18:20 -0500)
fs/unionfs/inode.c
fs/unionfs/lookup.c
fs/unionfs/main.c
fs/unionfs/rdstate.c
fs/unionfs/super.c
fs/unionfs/union.h

index 97dad8cccc1279a5717aeed972374ab701f718b1..f91cf8c4203a93a46407668b86b3bf5323c71ba9 100644 (file)
@@ -795,7 +795,7 @@ static void unionfs_put_link(struct dentry *dentry, struct nameidata *nd,
 
 /* Basically copied from the kernel vfs permission(), but we've changed
  * the following:
- *   (1) the IS_RDONLY check is skipped, and 
+ *   (1) the IS_RDONLY check is skipped, and
  *   (2) if you set the mount option `mode=nfsro', we assume that -EACCES
  *   means that the export is read-only and we should check standard Unix
  *   permissions.  This means that NFS ACL checks (or other advanced
index 5157f36960b00103df7411b7d17bf878a0e926f5..80696985ff9a40b2e88c467bd77a7166328ae406 100644 (file)
@@ -305,7 +305,7 @@ out_negative:
                        err = PTR_ERR(first_hidden_dentry);
                        goto out;
                }
-               
+
                /* FIXME: the following line needs to be changed to allow
                 * mountpoint crossing
                 */
index 4fffafa4153fc16b6514598a288252aa659ca9da..75b7129385351d944b7cfb3f0dcc59c8f7dda0d2 100644 (file)
@@ -483,7 +483,7 @@ out:
        return hidden_root_info;
 }
 
-/* our custom d_alloc_root workalike 
+/* our custom d_alloc_root workalike
  *
  * we can't use d_alloc_root if we want to use our own interpose function
  * unchanged, so we simply call our own "fake" d_alloc_root
index b67a86a99a06437b7f68cda8c3566e2db569d63a..2265031923545c32748cd98c5f5d28041916d050 100644 (file)
@@ -87,7 +87,7 @@ int init_rdstate(struct file *file)
 
        UNIONFS_F(file)->rdstate = alloc_rdstate(file->f_dentry->d_inode,
                                                 fbstart(file));
-       
+
        return (UNIONFS_F(file)->rdstate ? 0 : -ENOMEM);
 }
 
index c1048e9eeff0868cc5ef32fbbd9a64ab5b18bf0a..0426773f1480a813cfa1104255f59ca6b20d2dcc 100644 (file)
@@ -102,7 +102,7 @@ static void unionfs_put_super(struct super_block *sb)
        spd = UNIONFS_SB(sb);
        if (!spd)
                return;
-               
+
        bstart = sbstart(sb);
        bend = sbend(sb);
 
index b6fa0a2d72fe19b8a6034d40ba29fe09d2a35c50..0d722bd12f30b53becb1e68db4f2f27f3c6ca098 100644 (file)
@@ -98,7 +98,7 @@ struct unionfs_inode_info {
        int rdcount;
        int hashsize;
        int cookie;
-       
+
        /* The hidden inodes */
        struct inode **lower_inodes;
        /* to keep track of reads/writes for unlinks before closes */
@@ -152,8 +152,8 @@ struct filldir_node {
 
        /* we can check for duplicate whiteouts and files in the same branch
         * in order to return -EIO.
-        */ 
-       int bindex;             
+        */
+       int bindex;
 
        /* is this a whiteout entry? */
        int whiteout;