aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAntonio Quartulli <a@unstable.cc>2020-12-10 09:50:49 +0100
committerMike Snitzer <snitzer@redhat.com>2020-12-21 13:59:37 -0500
commit52252adede912890b81e0a05503a482062e17c6e (patch)
tree6d627e54d9a1b9b083911d51ea4e41c9db716c4e /drivers
parentdm verity: skip verity work if I/O error when system is shutting down (diff)
downloadlinux-dev-52252adede912890b81e0a05503a482062e17c6e.tar.xz
linux-dev-52252adede912890b81e0a05503a482062e17c6e.zip
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: Antonio Quartulli <a@unstable.cc> Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/md/dm-ebs-target.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-ebs-target.c b/drivers/md/dm-ebs-target.c
index cb85610527c2..55bcfb74f51f 100644
--- a/drivers/md/dm-ebs-target.c
+++ b/drivers/md/dm-ebs-target.c
@@ -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.