Unionfs: use braces in both branches of conditionals
authorErez Zadok <ezk@cs.sunysb.edu>
Sun, 30 Sep 2007 04:13:35 +0000 (00:13 -0400)
committerErez Zadok <ezk@cs.sunysb.edu>
Sun, 30 Sep 2007 04:13:35 +0000 (00:13 -0400)
As per CodingStyle, if one branch of an if-then-else has braces because it
has multiple statements, then the other branch should have braces too, even
if the other branch has only one statement in it.

Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
fs/unionfs/commonfops.c
fs/unionfs/dentry.c
fs/unionfs/dirfops.c
fs/unionfs/dirhelper.c
fs/unionfs/inode.c
fs/unionfs/lookup.c
fs/unionfs/main.c
fs/unionfs/rdstate.c
fs/unionfs/rename.c
fs/unionfs/unlink.c

index b42a6f4a403173ddbb0d52f2cdf0030b3e296f6e..f7da68798fb813d36b898ac6331c86e535029c11 100644 (file)
@@ -182,8 +182,9 @@ static int open_all_files(struct file *file)
                if (IS_ERR(lower_file)) {
                        err = PTR_ERR(lower_file);
                        goto out;
-               } else
+               } else {
                        unionfs_set_lower_file_idx(file, bindex, lower_file);
+               }
        }
 out:
        return err;
@@ -484,8 +485,9 @@ static int __open_file(struct inode *inode, struct file *file)
                                        break;
                        }
                        return err;
-               } else
+               } else {
                        lower_flags &= ~(OPEN_WRITE_FLAGS);
+               }
        }
 
        dget(lower_dentry);
index f15f1a80457937c501b9ff0c10f24dfa26f1d769..17a8120aa1cf48c24c94f280534bff0690bbee56 100644 (file)
@@ -292,9 +292,9 @@ bool __unionfs_d_revalidate_chain(struct dentry *dentry, struct nameidata *nd,
                 * always be valid, but its lower inode times don't have to
                 * be, so sync up the times only.
                 */
-               if (IS_ROOT(dtmp))
+               if (IS_ROOT(dtmp)) {
                        unionfs_copy_attr_times(dtmp->d_inode);
-               else {
+               else {
                        /*
                         * reset generation number to zero, guaranteed to be
                         * "old"
@@ -369,9 +369,9 @@ out_this:
 
        if (unlikely(is_newer_lower(dentry))) {
                /* root dentry special case as aforementioned */
-               if (IS_ROOT(dentry))
+               if (IS_ROOT(dentry)) {
                        unionfs_copy_attr_times(dentry->d_inode);
-               else {
+               else {
                        /*
                         * reset generation number to zero, guaranteed to be
                         * "old"
index e24975ab66942d530a836a7a7a5e719ed37f5878..3d08be3266c38151d978d95ec8d1a1316398a57f 100644 (file)
@@ -174,8 +174,9 @@ static int unionfs_readdir(struct file *file, void *dirent, filldir_t filldir)
                free_rdstate(uds);
                UNIONFS_F(file)->rdstate = NULL;
                file->f_pos = DIREOF;
-       } else
+       } else {
                file->f_pos = rdstate2offset(uds);
+       }
 
 out:
        unionfs_read_unlock(file->f_path.dentry->d_sb);
@@ -242,8 +243,9 @@ static loff_t unionfs_dir_llseek(struct file *file, loff_t offset, int origin)
                                if (rdstate) {
                                        UNIONFS_F(file)->rdstate = rdstate;
                                        err = rdstate->offset;
-                               } else
+                               } else {
                                        err = -EINVAL;
+                               }
                        }
                        break;
                case SEEK_CUR:
index 66b337478f39932711500338b2582b57e4707d82..fc6241bbd67b0b6776a9c0ba62faaeed5a8f209d 100644 (file)
@@ -111,9 +111,9 @@ int delete_whiteouts(struct dentry *dentry, int bindex,
        BUG_ON(!S_ISDIR(lower_dir->i_mode));
 
        mutex_lock(&lower_dir->i_mutex);
-       if (!permission(lower_dir, MAY_WRITE | MAY_EXEC, NULL))
+       if (!permission(lower_dir, MAY_WRITE | MAY_EXEC, NULL)) {
                err = do_delete_whiteouts(dentry, bindex, namelist);
-       else {
+       else {
                args.deletewh.namelist = namelist;
                args.deletewh.dentry = dentry;
                args.deletewh.bindex = bindex;
index 1890abadbde06a785d612feedf6ff658602b7293..769a7a11f38cbd5f147776bb521463183db9e940 100644 (file)
@@ -562,8 +562,9 @@ static int unionfs_mkdir(struct inode *parent, struct dentry *dentry, int mode)
                        if (!IS_COPYUP_ERR(err))
                                goto out;
                        bstart--;
-               } else
+               } else {
                        whiteout_unlinked = 1;
+               }
        }
 
        for (bindex = bstart; bindex >= 0; bindex--) {
@@ -709,8 +710,9 @@ static int unionfs_mknod(struct inode *dir, struct dentry *dentry, int mode,
                        if (!IS_COPYUP_ERR(err))
                                goto out;
                        bstart--;
-               } else
+               } else {
                        whiteout_unlinked = 1;
+               }
        }
 
        for (bindex = bstart; bindex >= 0; bindex--) {
index 4c26fb8be509c69e2675de12bb96464e53d2e6a8..e52acb5a0e13a2e05674fa4c92938078f709199d 100644 (file)
@@ -47,11 +47,11 @@ static noinline int is_opaque_dir(struct dentry *dentry, int bindex)
 
        mutex_lock(&lower_inode->i_mutex);
 
-       if (!permission(lower_inode, MAY_EXEC, NULL))
+       if (!permission(lower_inode, MAY_EXEC, NULL)) {
                wh_lower_dentry =
                        lookup_one_len(UNIONFS_DIR_OPAQUE, lower_dentry,
                                       sizeof(UNIONFS_DIR_OPAQUE) - 1);
-       else {
+       else {
                args.is_opaque.dentry = lower_dentry;
                run_sioq(__is_opaque_dir, &args);
                wh_lower_dentry = args.ret;
@@ -255,8 +255,9 @@ struct dentry *unionfs_lookup_backend(struct dentry *dentry,
                                first_lower_mnt =
                                        unionfs_mntget(parent_dentry, bindex);
                                first_dentry_offset = bindex;
-                       } else
+                       } else {
                                dput(lower_dentry);
+                       }
 
                        continue;
                }
index 25ac8513788da75fbebee3eb771bae39f03bc3aa..2fe6aaa2e9258049373914c7f46ba71bc943b626 100644 (file)
@@ -149,9 +149,9 @@ skip:
                break;
        case INTERPOSE_LOOKUP:
                spliced = d_splice_alias(inode, dentry);
-               if (IS_ERR(spliced))
+               if (IS_ERR(spliced)) {
                        err = PTR_ERR(spliced);
-               else if (spliced && spliced != dentry) {
+               else if (spliced && spliced != dentry) {
                        /*
                         * d_splice can return a dentry if it was
                         * disconnected and had to be moved.  We must ensure
index eb1af60e5a620ca1f5aca977331c9b475876a7ad..b8953c21a16da77429ab176c8e0c3a873da58956 100644 (file)
@@ -260,9 +260,9 @@ int add_filldir_node(struct unionfs_dir_state *rdstate, const char *name,
        new->bindex = bindex;
        new->whiteout = whiteout;
 
-       if (namelen < DNAME_INLINE_LEN_MIN)
+       if (namelen < DNAME_INLINE_LEN_MIN) {
                new->name = new->iname;
-       else {
+       else {
                new->name = kmalloc(namelen + 1, GFP_KERNEL);
                if (unlikely(!new->name)) {
                        kmem_cache_free(unionfs_filldir_cachep, new);
index 2c29ada940163e77d3545d7822d0c1494e0985cb..3e9b5fbb919141a1fedb75fb1814c7795a7d86c4 100644 (file)
@@ -83,8 +83,9 @@ static int __unionfs_rename(struct inode *old_dir, struct dentry *old_dentry,
                unlock_dir(lower_wh_dir_dentry);
                if (err)
                        goto out;
-       } else
+       } else {
                dput(lower_wh_dentry);
+       }
 
        dget(lower_old_dentry);
        lower_old_dir_dentry = dget_parent(lower_old_dentry);
@@ -178,8 +179,9 @@ static int do_unionfs_rename(struct inode *old_dir,
                if (!IS_COPYUP_ERR(err))
                        goto out;
                do_copyup = old_bstart - 1;
-       } else
+       } else {
                revert = 1;
+       }
 
        /*
         * Unlink all instances of destination that exist to the left of
@@ -267,9 +269,9 @@ static int do_unionfs_rename(struct inode *old_dir,
                local_err = vfs_create(lower_parent->d_inode, wh_old, S_IRUGO,
                                       NULL);
                unlock_dir(lower_parent);
-               if (!local_err)
+               if (!local_err) {
                        set_dbopaque(old_dentry, bwh_old);
-               else {
+               else {
                        /*
                         * we can't fix anything now, so we cop-out and use
                         * -EIO.
@@ -387,8 +389,9 @@ static int may_rename_dir(struct dentry *dentry)
        if (err == -ENOTEMPTY) {
                if (is_robranch(dentry))
                        return -EXDEV;
-       } else if (err)
+       } else if (err) {
                return err;
+       }
 
        bstart = dbstart(dentry);
        if (dbend(dentry) == bstart || dbopaque(dentry) == bstart)
@@ -438,9 +441,9 @@ int unionfs_rename(struct inode *old_dir, struct dentry *old_dentry,
         * simply override it even if the whited-out dir is not empty.
         */
        wh_dentry = lookup_whiteout(new_dentry);
-       if (!IS_ERR(wh_dentry))
+       if (!IS_ERR(wh_dentry)) {
                dput(wh_dentry);
-       else if (new_dentry->d_inode) {
+       else if (new_dentry->d_inode) {
                if (S_ISDIR(old_dentry->d_inode->i_mode) !=
                    S_ISDIR(new_dentry->d_inode->i_mode)) {
                        err = S_ISDIR(old_dentry->d_inode->i_mode) ?
@@ -468,10 +471,10 @@ int unionfs_rename(struct inode *old_dir, struct dentry *old_dentry,
        }
        err = do_unionfs_rename(old_dir, old_dentry, new_dir, new_dentry);
 out:
-       if (err)
+       if (err) {
                /* clear the new_dentry stuff created */
                d_drop(new_dentry);
-       else {
+       else {
                /*
                 * force re-lookup since the dir on ro branch is not renamed,
                 * and lower dentries still indicate the un-renamed ones.
index afca1035d6faf52a8fe38de95a31a9ac8c2981af..0a2c1e86f584dce46a930ee9ea447bab59f01036 100644 (file)
@@ -55,11 +55,12 @@ static int unionfs_unlink_whiteout(struct inode *dir, struct dentry *dentry)
                if (dbstart(dentry) == 0)
                        goto out;
                err = create_whiteout(dentry, dbstart(dentry) - 1);
-       } else if (dbopaque(dentry) != -1)
+       } else if (dbopaque(dentry) != -1) {
                /* There is a lower lower-priority file with the same name. */
                err = create_whiteout(dentry, dbopaque(dentry));
-       else
+       } else {
                err = create_whiteout(dentry, dbstart(dentry));
+       }
 
 out:
        if (!err)
@@ -161,9 +162,9 @@ int unionfs_rmdir(struct inode *dir, struct dentry *dentry)
 
        err = unionfs_rmdir_first(dir, dentry, namelist);
        /* create whiteout */
-       if (!err)
+       if (!err) {
                err = create_whiteout(dentry, dbstart(dentry));
-       else {
+       else {
                int new_err;
 
                if (dbstart(dentry) == 0)