When building with gcc -W fs/reiserfs/namei.c:602 has a few warnings
about 'empty body in an if-statement'. This patch silences those warnings.
Signed-off-by: Jesper Juhl <[email protected]>
--- linux-2.6.12-rc2-mm3-orig/fs/reiserfs/namei.c 2005-04-11 21:20:55.000000000 +0200
+++ linux-2.6.12-rc2-mm3/fs/reiserfs/namei.c 2005-04-15 02:54:53.000000000 +0200
@@ -352,8 +352,9 @@ static struct dentry * reiserfs_lookup (
}
/* Propogate the priv_object flag so we know we're in the priv tree */
- if (is_reiserfs_priv_object (dir))
+ if (is_reiserfs_priv_object (dir)) {
reiserfs_mark_inode_private (inode);
+ }
}
reiserfs_write_unlock(dir->i_sb);
if ( retval == IO_ERROR ) {
@@ -599,8 +600,9 @@ static int reiserfs_create (struct inode
reiserfs_write_lock(dir->i_sb);
- if (locked)
+ if (locked) {
reiserfs_write_lock_xattrs (dir->i_sb);
+ }
retval = journal_begin(&th, dir->i_sb, jbegin_count);
if (retval) {
@@ -640,8 +642,9 @@ static int reiserfs_create (struct inode
retval = journal_end(&th, dir->i_sb, jbegin_count) ;
out_failed:
- if (locked)
+ if (locked) {
reiserfs_write_unlock_xattrs (dir->i_sb);
+ }
reiserfs_write_unlock(dir->i_sb);
return retval;
}
@@ -668,8 +671,9 @@ static int reiserfs_mknod (struct inode
reiserfs_write_lock(dir->i_sb);
- if (locked)
+ if (locked) {
reiserfs_write_lock_xattrs (dir->i_sb);
+ }
retval = journal_begin(&th, dir->i_sb, jbegin_count) ;
if (retval) {
@@ -714,8 +718,9 @@ static int reiserfs_mknod (struct inode
retval = journal_end(&th, dir->i_sb, jbegin_count) ;
out_failed:
- if (locked)
+ if (locked) {
reiserfs_write_unlock_xattrs (dir->i_sb);
+ }
reiserfs_write_unlock(dir->i_sb);
return retval;
}
@@ -743,8 +748,9 @@ static int reiserfs_mkdir (struct inode
locked = reiserfs_cache_default_acl (dir);
reiserfs_write_lock(dir->i_sb);
- if (locked)
+ if (locked) {
reiserfs_write_lock_xattrs (dir->i_sb);
+ }
retval = journal_begin(&th, dir->i_sb, jbegin_count) ;
if (retval) {
@@ -799,8 +805,9 @@ static int reiserfs_mkdir (struct inode
d_instantiate(dentry, inode);
retval = journal_end(&th, dir->i_sb, jbegin_count) ;
out_failed:
- if (locked)
+ if (locked) {
reiserfs_write_unlock_xattrs (dir->i_sb);
+ }
reiserfs_write_unlock(dir->i_sb);
return retval;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]