* [Ocfs2-devel] [PATCH] ocfs2: one more warning fix in ocfs2_file_aio_write()
@ 2010-03-25 20:21 Coly Li
2010-03-25 20:45 ` Joel Becker
0 siblings, 1 reply; 3+ messages in thread
From: Coly Li @ 2010-03-25 20:21 UTC (permalink / raw)
To: ocfs2-devel
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@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)) ||
+ (old_clusters != OCFS2_I(inode)->ip_clusters) ||
has_refcount)) {
ret = jbd2_journal_force_commit(osb->journal->j_journal);
if (ret < 0)
--
Coly Li
SuSE Labs
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Ocfs2-devel] [PATCH] ocfs2: one more warning fix in ocfs2_file_aio_write()
2010-03-25 20:21 [Ocfs2-devel] [PATCH] ocfs2: one more warning fix in ocfs2_file_aio_write() Coly Li
@ 2010-03-25 20:45 ` Joel Becker
2010-03-25 21:20 ` Coly Li
0 siblings, 1 reply; 3+ messages in thread
From: Joel Becker @ 2010-03-25 20:45 UTC (permalink / raw)
To: ocfs2-devel
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@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
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Ocfs2-devel] [PATCH] ocfs2: one more warning fix in ocfs2_file_aio_write()
2010-03-25 20:45 ` Joel Becker
@ 2010-03-25 21:20 ` Coly Li
0 siblings, 0 replies; 3+ messages in thread
From: Coly Li @ 2010-03-25 21:20 UTC (permalink / raw)
To: ocfs2-devel
On 2010?03?26? 04:45, Joel Becker Wrote:
> 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@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.
>
Just posted another update, and Cc to you.
Thanks for the review :-)
--
Coly Li
SuSE Labs
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-03-25 21:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-25 20:21 [Ocfs2-devel] [PATCH] ocfs2: one more warning fix in ocfs2_file_aio_write() Coly Li
2010-03-25 20:45 ` Joel Becker
2010-03-25 21:20 ` Coly Li
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.