From: Jan Kara Date: Wed, 10 Dec 2014 23:41:42 +0000 (-0800) Subject: ocfs2: remove bogus test from ocfs2_read_locked_inode() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4a635a113bfe1eaa184410d6b6065cd8eee13607;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git ocfs2: remove bogus test from ocfs2_read_locked_inode() 'args' are always set for ocfs2_read_locked_inode() and brelse() checks whether bh is NULL. So the test (args && bh) is unnecessary (plus the args part is really confusing anyway). Remove it. Coverity id: 1128856. Signed-off-by: Jan Kara Cc: Mark Fasheh Cc: Joel Becker Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c index 437de7f768c6..c8b25de9efbb 100644 --- a/fs/ocfs2/inode.c +++ b/fs/ocfs2/inode.c @@ -540,8 +540,7 @@ bail: if (status < 0) make_bad_inode(inode); - if (args && bh) - brelse(bh); + brelse(bh); return status; }