lkml.org 
[lkml]   [1999]   [Nov]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject2.2.13 error fix #2
Here is another warning that I got agains 2.2.13

** I am not 100% sure if I put the braces in the right place, but it
seems like the 'logical' right place. Could someone please verify this
is correct and then please please let me know -> ie email me as I am not
on this list.

error
------------------------------
dquot.c: In function `reset_inode_dquot_ptrs':
dquot.c:720: warning: suggest explicit braces to avoid ambiguous `else'

--------------
patch
------------------

--- /root/dquot.c Sat Nov 13 19:37:49 1999
+++ /usr/src/linux-2.2.memptch/fs/dquot.c Sat Nov 13 19:58:19 1999
@@ -717,7 +717,7 @@
}
inode->i_flags &= ~S_QUOTA;
put_it:
- if (dquot != NODQUOT)
+ if (dquot != NODQUOT) {
if (dqput_blocks(dquot)) {
spin_unlock(&inode_lock); /* We may block so drop the lock... *
dqput(dquot);
@@ -725,9 +725,12 @@
/* we may have blocked ... */
return 1;
}
- else
+ else {
dqput(dquot); /* dqput() won't block so we can hold locks... */
+ }
+ }
return 0;

}

static void reset_dquot_ptrs(kdev_t dev, short type)


--
Joe Acosta




-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 13:55    [W:0.055 / U:1.356 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site