[Ocfs2-devel] [PATCH] ocfs2: one more warning fix in ocfs2_file_aio_write()

Joel Becker Joel.Becker at oracle.com
Thu Mar 25 13:45:15 PDT 2010


On Fri, Mar 26, 2010 at 04:21:39AM +0800, Coly Li wrote:
> This patch fixes another compiling warning in ocfs2_file_aio_write() like this,
>     fs/ocfs2/file.c: In function ‘ocfs2_file_aio_write’:
>     fs/ocfs2/file.c:2026: warning: suggest parentheses around ‘&&’ within ‘||’
> 
> Signed-off-by: Coly Li <coly.li at suse.de>
> ---
>  fs/ocfs2/file.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c
> index 17947dc..c4638fd 100644
> --- a/fs/ocfs2/file.c
> +++ b/fs/ocfs2/file.c
> @@ -2021,8 +2021,8 @@ out_dio:
>  		if (ret < 0)
>  			written = ret;
> 
> -		if (!ret && (old_size != i_size_read(inode) ||
> -		    old_clusters != OCFS2_I(inode)->ip_clusters ||
> +		if ((!ret) && ((old_size != i_size_read(inode)) ||

	You don't need to wrap the !ret.  It's unary.

Joel

-- 

Life's Little Instruction Book #510

	"Count your blessings."

Joel Becker
Principal Software Developer
Oracle
E-mail: joel.becker at oracle.com
Phone: (650) 506-8127



More information about the Ocfs2-devel mailing list