Commit 52252ade authored by Antonio Quartulli's avatar Antonio Quartulli Committed by Mike Snitzer
Browse files

dm ebs: avoid double unlikely() notation when using IS_ERR()



The definition of IS_ERR() already applies the unlikely() notation
when checking the error status of the passed pointer. For this
reason there is no need to have the same notation outside of
IS_ERR() itself.

Clean up code by removing redundant notation.

Signed-off-by: default avatarAntonio Quartulli <a@unstable.cc>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent 252bd125
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ static int __ebs_rw_bvec(struct ebs_c *ec, int rw, struct bio_vec *bv, struct bv
		else
			ba = dm_bufio_new(ec->bufio, block, &b);

		if (unlikely(IS_ERR(ba))) {
		if (IS_ERR(ba)) {
			/*
			 * Carry on with next buffer, if any, to issue all possible
			 * data but return error.