Staging: pohmelfs: Remove braces around single statements
authorBill Pemberton <wfp5p@virginia.edu>
Wed, 22 Apr 2009 12:59:15 +0000 (08:59 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 19 Jun 2009 18:00:39 +0000 (11:00 -0700)
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/pohmelfs/dir.c
drivers/staging/pohmelfs/inode.c
drivers/staging/pohmelfs/net.c
drivers/staging/pohmelfs/trans.c

index 71210b1..4c58e22 100644 (file)
@@ -692,9 +692,9 @@ static int pohmelfs_remove_entry(struct inode *dir, struct dentry *dentry)
        n = pohmelfs_search_hash(parent, str.hash);
        if (n) {
                pohmelfs_fix_offset(parent, n);
-               if (test_bit(NETFS_INODE_REMOTE_SYNCED, &pi->state)) {
+               if (test_bit(NETFS_INODE_REMOTE_SYNCED, &pi->state))
                        pohmelfs_remove_child(pi, n);
-               }
+
                pohmelfs_name_free(parent, n);
                err = 0;
        }
@@ -1006,9 +1006,8 @@ static int pohmelfs_rename(struct inode *old_dir, struct dentry *old_dentry,
        pi = POHMELFS_I(inode);
        old_parent = POHMELFS_I(old_dir);
 
-       if (new_dir) {
+       if (new_dir)
                new_dir->i_sb->s_op->write_inode(new_dir, 0);
-       }
 
        old_hash = jhash(old_dentry->d_name.name, old_dentry->d_name.len, 0);
        str.hash = jhash(new_dentry->d_name.name, new_dentry->d_name.len, 0);
index 6256c5c..882c619 100644 (file)
@@ -1529,9 +1529,9 @@ static void pohmelfs_drop_scan(struct work_struct *work)
        struct pohmelfs_inode *pi;
        unsigned int count = 0;
 
-       while ((pi = pohmelfs_get_inode_from_list(psb, &psb->drop_list, &count))) {
+       while ((pi = pohmelfs_get_inode_from_list(psb, &psb->drop_list, &count)))
                pohmelfs_put_inode_count(pi, count);
-       }
+
        pohmelfs_check_states(psb);
 
        if (psb->drop_scan_timeout)
@@ -1568,9 +1568,8 @@ static void pohmelfs_trans_scan_state(struct netfs_state *st)
                rb_node = rb_next(rb_node);
 
                err = -ETIMEDOUT;
-               if (timeout && (++dst->retries < psb->trans_retries)) {
+               if (timeout && (++dst->retries < psb->trans_retries))
                        err = netfs_trans_resend(t, psb);
-               }
 
                if (err || (t->flags & NETFS_TRANS_SINGLE_DST)) {
                        if (netfs_trans_remove_nolock(dst, st))
index 3d1c0bc..5f312c9 100644 (file)
@@ -914,9 +914,9 @@ static int pohmelfs_recv(void *data)
                                unsigned char *hash = e->data;
 
                                dprintk("%s: received hash: ", __func__);
-                               for (i=0; i<cmd->csize; ++i) {
+                               for (i=0; i<cmd->csize; ++i)
                                        printk("%02x ", hash[i]);
-                               }
+
                                printk("\n");
                        }
 #endif
index 2a4568d..4587f6d 100644 (file)
@@ -178,9 +178,9 @@ int netfs_trans_send(struct netfs_trans *t, struct netfs_state *st)
 
 err_out_unlock_return:
 
-       if (st->need_reset) {
+       if (st->need_reset)
                netfs_state_exit(st);
-       }
+
        netfs_state_unlock_send(st);
 
        dprintk("%s: t: %p, gen: %u, err: %d.\n",