[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <202503311555115618U8Md16mKpRYOIy2TOmB6@zte.com.cn>
Date: Mon, 31 Mar 2025 15:55:11 +0800 (CST)
From: <shao.mingyin@....com.cn>
To: <james.bottomley@...senpartnership.com>
Cc: <martin.petersen@...cle.com>, <linux-scsi@...r.kernel.org>,
<linux-kernel@...r.kernel.org>, <yang.yang29@....com.cn>,
<xu.xin16@....com.cn>, <ye.xingchen@....com.cn>,
<li.haoran7@....com.cn>
Subject: [PATCH] scsi: scsi_transport_srp: replace min/max nesting with
clamp()
From: Li Haoran <li.haoran7@....com.cn>
This patch replaces min(a, max(b, c)) by clamp(val, lo, hi) in the SRP
transport layer. The clamp() macro explicitly expresses the intent of
constraining a value within bounds, improving code readability.
Signed-off-by: Li Haoran <li.haoran7@....com.cn>
Signed-off-by: Shao Mingyin <shao.mingyin@....com.cn>
---
drivers/scsi/scsi_transport_srp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/scsi/scsi_transport_srp.c b/drivers/scsi/scsi_transport_srp.c
index 64f6b22e8cc0..aeb58a9e6b7f 100644
--- a/drivers/scsi/scsi_transport_srp.c
+++ b/drivers/scsi/scsi_transport_srp.c
@@ -388,7 +388,7 @@ static void srp_reconnect_work(struct work_struct *work)
"reconnect attempt %d failed (%d)\n",
++rport->failed_reconnects, res);
delay = rport->reconnect_delay *
- min(100, max(1, rport->failed_reconnects - 10));
+ clamp(rport->failed_reconnects - 10, 1, 100);
if (delay > 0)
queue_delayed_work(system_long_wq,
&rport->reconnect_work, delay * HZ);
--
2.25.1
Powered by blists - more mailing lists