From: Coly Li Date: Thu, 25 Feb 2010 06:57:13 +0000 (+0800) Subject: ocfs2: fix warning in ocfs2_file_aio_write() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=66b116c9d8f70baadf5b2145dddb35af222df041;p=deliverable%2Flinux.git ocfs2: fix warning in ocfs2_file_aio_write() This patch fixes a compiling warning in ocfs2_file_aio_write(). Signed-off-by: Coly Li Signed-off-by: Joel Becker --- 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: * async dio is going to do it in the future or an end_io after an * error has already done it. */ - if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) { + if ((ret == -EIOCBQUEUED) || (!ocfs2_iocb_is_rw_locked(iocb))) { rw_level = -1; have_alloc_sem = 0; }