aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2
diff options
context:
space:
mode:
authorColy Li <coly.li@suse.de>2010-02-25 01:57:13 -0500
committerJoel Becker <joel.becker@oracle.com>2010-02-26 18:41:18 -0500
commit66b116c9d8f70baadf5b2145dddb35af222df041 (patch)
treeb1e7592378c5eb14c03a8928795c627ed0f8bc40 /fs/ocfs2
parentcbe0e331fdbdb256943499358c75bc098a2134c1 (diff)
ocfs2: fix warning in ocfs2_file_aio_write()
This patch fixes a compiling warning in ocfs2_file_aio_write(). Signed-off-by: Coly Li <coly.li@suse.de> Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r--fs/ocfs2/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c
index da097bd07b72..c8a4a2939e55 100644
--- a/fs/ocfs2/file.c
+++ b/fs/ocfs2/file.c
@@ -2041,7 +2041,7 @@ out_dio:
2041 * async dio is going to do it in the future or an end_io after an 2041 * async dio is going to do it in the future or an end_io after an
2042 * error has already done it. 2042 * error has already done it.
2043 */ 2043 */
2044 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) { 2044 if ((ret == -EIOCBQUEUED) || (!ocfs2_iocb_is_rw_locked(iocb))) {
2045 rw_level = -1; 2045 rw_level = -1;
2046 have_alloc_sem = 0; 2046 have_alloc_sem = 0;
2047 } 2047 }