Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4a635a11 authored by Jan Kara's avatar Jan Kara Committed by Linus Torvalds
Browse files

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: default avatarJan Kara <jack@suse.cz>
Cc: Mark Fasheh <mfasheh@suse.com>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 2b693005
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -540,7 +540,6 @@ bail:
	if (status < 0)
		make_bad_inode(inode);

	if (args && bh)
	brelse(bh);

	return status;