[PATCH 16/23] lvm: device mapper: remove unnecessary unlikely()

From: Igor Stoppa
Date: Thu Aug 30 2018 - 18:35:50 EST


WARN_ON() already contains an unlikely(), so it's not necessary to
wrap it into another.

Signed-off-by: Igor Stoppa <igor.stoppa@xxxxxxxxxx>
Cc: Joe Thornber <ejt@xxxxxxxxxx>
Cc: Alasdair Kergon <agk@xxxxxxxxxx>
---
drivers/md/dm-cache-policy-smq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/dm-cache-policy-smq.c b/drivers/md/dm-cache-policy-smq.c
index 1b5b9ad9e492..b61aac00ff40 100644
--- a/drivers/md/dm-cache-policy-smq.c
+++ b/drivers/md/dm-cache-policy-smq.c
@@ -1200,7 +1200,7 @@ static void queue_demotion(struct smq_policy *mq)
struct policy_work work;
struct entry *e;

- if (unlikely(WARN_ON_ONCE(!mq->migrations_allowed)))
+ if (WARN_ON_ONCE(!mq->migrations_allowed))
return;

e = q_peek(&mq->clean, mq->clean.nr_levels / 2, true);
--
2.17.1