[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20180830223429.30051-19-igor.stoppa@huawei.com>
Date: Fri, 31 Aug 2018 01:34:24 +0300
From: Igor Stoppa <igor.stoppa@...il.com>
To: linux-kernel@...r.kernel.org
Cc: igor.stoppa@...il.com, Igor Stoppa <igor.stoppa@...wei.com>,
Bart Van Assche <bvanassche@....org>
Subject: [PATCH 18/23] infiniband: scsi: remove unnecessary unlikely()
WARN_ON() already contains an unlikely(), so it's not necessary to
wrap it into another.
Signed-off-by: Igor Stoppa <igor.stoppa@...wei.com>
Cc: Bart Van Assche <bvanassche@....org>
---
drivers/infiniband/ulp/srpt/ib_srpt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/infiniband/ulp/srpt/ib_srpt.c b/drivers/infiniband/ulp/srpt/ib_srpt.c
index f37cbad022a2..447d21ea479a 100644
--- a/drivers/infiniband/ulp/srpt/ib_srpt.c
+++ b/drivers/infiniband/ulp/srpt/ib_srpt.c
@@ -2708,7 +2708,7 @@ static void srpt_queue_response(struct se_cmd *cmd)
break;
}
- if (unlikely(WARN_ON_ONCE(state == SRPT_STATE_CMD_RSP_SENT)))
+ if (WARN_ON_ONCE(state == SRPT_STATE_CMD_RSP_SENT))
return;
/* For read commands, transfer the data to the initiator. */
--
2.17.1
Powered by blists - more mailing lists