cleanup: remove unnecessary blank lines in short code blocks
authorErez_Zadok <ezk@cs.sunysb.edu>
Sat, 24 Mar 2007 23:31:28 +0000 (19:31 -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/subr.c
fs/unionfs/super.c
fs/unionfs/union.h
fs/unionfs/unlink.c

index 693e34d824b0def4a4f677011ed2ccd1135cc5fe..ede3eefdf758435e1c9ab28d42bb16beaf6e9a85 100644 (file)
@@ -701,7 +701,6 @@ static int unionfs_mknod(struct inode *dir, struct dentry *dentry, int mode,
                if (err) {
                        if (!IS_COPYUP_ERR(err))
                                goto out;
-
                        bstart--;
                } else
                        whiteout_unlinked = 1;
index 8e5f4194b8f349a6889f015daed7ccc0bc3a557f..67412be723c605ba00db07598a7effc0348b9ea7 100644 (file)
@@ -295,7 +295,6 @@ out_negative:
        if (lookupmode == INTERPOSE_REVAL) {
                if (dentry->d_inode)
                        UNIONFS_I(dentry->d_inode)->stale = 1;
-
                goto out;
        }
        /* This should only happen if we found a whiteout. */
index 4318638b527fcccd86d5deb5808381257773d992..4f1b355dd1b12170249607eec726edab10e0a5a4 100644 (file)
@@ -82,7 +82,6 @@ int create_whiteout(struct dentry *dentry, int start)
                                         hidden_wh_dentry,
                                         ~current->fs->umask & S_IRWXUGO,
                                         NULL);
-
                }
                unlock_dir(hidden_dir_dentry);
                dput(hidden_wh_dentry);
index 20949928d5d4000ab683eb3d89dd049812351fb3..25380f35d3b6e75a9f783e955394fc066e4d1823 100644 (file)
@@ -88,7 +88,6 @@ static void unionfs_put_inode(struct inode *inode)
 static void unionfs_delete_inode(struct inode *inode)
 {
        inode->i_size = 0;      /* every f/s seems to do that */
-
        clear_inode(inode);
 }
 
index 77abb4dc2dd55cf497e57bb38ea398f35a1f2028..664caff3e564c2be67028400da137b09b352afe7 100644 (file)
@@ -353,16 +353,13 @@ struct dentry *unionfs_lookup_backend(struct dentry *dentry,
 static inline int branchperms(const struct super_block *sb, int index)
 {
        BUG_ON(index < 0);
-
        return UNIONFS_SB(sb)->data[index].branchperms;
 }
 
 static inline int set_branchperms(struct super_block *sb, int index, int perms)
 {
        BUG_ON(index < 0);
-
        UNIONFS_SB(sb)->data[index].branchperms = perms;
-
        return perms;
 }
 
index 27b4542fd3a5dc14e273e9e019863e627c5694bd..2052270be53a954e8975f682571f9352eac20f8f 100644 (file)
@@ -51,7 +51,6 @@ static int unionfs_unlink_whiteout(struct inode *dir, struct dentry *dentry)
        if (err) {
                if (dbstart(dentry) == 0)
                        goto out;
-
                err = create_whiteout(dentry, dbstart(dentry) - 1);
        } else if (dbopaque(dentry) != -1)
                /* There is a hidden lower-priority file with the same name. */