[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20150401074018.GA26339@quack.suse.cz>
Date: Wed, 1 Apr 2015 09:40:18 +0200
From: Jan Kara <jack@...e.cz>
To: Lukáš Czerner <lczerner@...hat.com>
Cc: Wei Yuan <weiyuan.wei@...wei.com>, jack@...e.cz,
akpm@...ux-foundation.org, adilger.kernel@...ger.ca,
linux-ext4@...r.kernel.org, linux-kernel@...r.kernel.org,
lizefan@...wei.com
Subject: Re: [PATCH] ext3: Remove useless condition in if statement.
On Mon 23-03-15 11:30:44, Lukáš Czerner wrote:
> On Fri, 20 Mar 2015, Wei Yuan wrote:
>
> > Date: Fri, 20 Mar 2015 11:09:10 +0800
> > From: Wei Yuan <weiyuan.wei@...wei.com>
> > To: jack@...e.cz, akpm@...ux-foundation.org, adilger.kernel@...ger.ca
> > Cc: linux-ext4@...r.kernel.org, linux-kernel@...r.kernel.org,
> > lczerner@...hat.com, lizefan@...wei.com
> > Subject: [PATCH] ext3: Remove useless condition in if statement.
> >
> > In this if statement, the previous condition is useless, the later one has covered it.
>
> Nice that you've send this ext3 counterpart for ext4 patch. Thanks!
>
> Reviewed-by: Lukas Czerner <lczerner@...hat.com>
Thanks. I've added the patch to my tree.
Honza
>
> >
> > Signed-off-by: Weiyuan <weiyuan.wei@...wei.com>
> > ---
> > fs/ext3/xattr.c | 3 +--
> > 1 file changed, 1 insertion(+), 2 deletions(-)
> >
> > diff --git a/fs/ext3/xattr.c b/fs/ext3/xattr.c
> > index c6874be..24215dc 100644
> > --- a/fs/ext3/xattr.c
> > +++ b/fs/ext3/xattr.c
> > @@ -546,8 +546,7 @@ ext3_xattr_set_entry(struct ext3_xattr_info *i, struct ext3_xattr_search *s)
> > free += EXT3_XATTR_LEN(name_len);
> > }
> > if (i->value) {
> > - if (free < EXT3_XATTR_SIZE(i->value_len) ||
> > - free < EXT3_XATTR_LEN(name_len) +
> > + if (free < EXT3_XATTR_LEN(name_len) +
> > EXT3_XATTR_SIZE(i->value_len))
> > return -ENOSPC;
> > }
> >
--
Jan Kara <jack@...e.cz>
SUSE Labs, CR
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists