Re: [PATCH] ext3: Remove useless condition in if statement.

2015-04-01 Thread Jan Kara
, linux-kernel@vger.kernel.org, > > lczer...@redhat.com, lize...@huawei.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'

Re: [PATCH] ext3: Remove useless condition in if statement.

2015-03-23 Thread Lukáš Czerner
t; 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 > > Signed-off-by:

[PATCH] ext3: Remove useless condition in if statement.

2015-03-19 Thread Wei Yuan
In this if statement, the previous condition is useless, the later one has covered it. Signed-off-by: Weiyuan --- 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/