dect
/
linux-2.6
Archived
13
0
Fork 0

Staging: pohmelfs: Remove braces around single statements

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Bill Pemberton 2009-04-22 08:59:15 -04:00 committed by Greg Kroah-Hartman
parent 3bafeab781
commit dc8284611b
4 changed files with 10 additions and 12 deletions

View 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);

View 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))

View 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

View 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",