public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scsi: lpfc: Use secs_to_jiffies() instead of msecs_to_jiffies()
@ 2025-04-28 17:16 Thorsten Blum
  2025-04-29  0:42 ` Justin Tee
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Thorsten Blum @ 2025-04-28 17:16 UTC (permalink / raw)
  To: James Smart, Dick Kennedy, James E.J. Bottomley,
	Martin K. Petersen
  Cc: Thorsten Blum, linux-scsi, linux-kernel

Use secs_to_jiffies() instead of msecs_to_jiffies() and avoid scaling
the timeouts to milliseconds.

No functional changes intended.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
 drivers/scsi/lpfc/lpfc_bsg.c   | 6 ++----
 drivers/scsi/lpfc/lpfc_vport.c | 4 ++--
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/drivers/scsi/lpfc/lpfc_bsg.c b/drivers/scsi/lpfc/lpfc_bsg.c
index c8f8496bbdf8..d61d979f9b77 100644
--- a/drivers/scsi/lpfc/lpfc_bsg.c
+++ b/drivers/scsi/lpfc/lpfc_bsg.c
@@ -2687,8 +2687,7 @@ static int lpfcdiag_loop_get_xri(struct lpfc_hba *phba, uint16_t rpi,
 	evt->wait_time_stamp = jiffies;
 	time_left = wait_event_interruptible_timeout(
 		evt->wq, !list_empty(&evt->events_to_see),
-		msecs_to_jiffies(1000 *
-			((phba->fc_ratov * 2) + LPFC_DRVR_TIMEOUT)));
+		secs_to_jiffies(phba->fc_ratov * 2 + LPFC_DRVR_TIMEOUT));
 	if (list_empty(&evt->events_to_see))
 		ret_val = (time_left) ? -EINTR : -ETIMEDOUT;
 	else {
@@ -3258,8 +3257,7 @@ lpfc_bsg_diag_loopback_run(struct bsg_job *job)
 	evt->waiting = 1;
 	time_left = wait_event_interruptible_timeout(
 		evt->wq, !list_empty(&evt->events_to_see),
-		msecs_to_jiffies(1000 *
-			((phba->fc_ratov * 2) + LPFC_DRVR_TIMEOUT)));
+		secs_to_jiffies(phba->fc_ratov * 2 + LPFC_DRVR_TIMEOUT));
 	evt->waiting = 0;
 	if (list_empty(&evt->events_to_see)) {
 		rc = (time_left) ? -EINTR : -ETIMEDOUT;
diff --git a/drivers/scsi/lpfc/lpfc_vport.c b/drivers/scsi/lpfc/lpfc_vport.c
index cc56a7334319..2797aa75a689 100644
--- a/drivers/scsi/lpfc/lpfc_vport.c
+++ b/drivers/scsi/lpfc/lpfc_vport.c
@@ -505,7 +505,7 @@ lpfc_send_npiv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
 		wait_event_timeout(waitq,
 				   !test_bit(NLP_WAIT_FOR_LOGO,
 					     &ndlp->save_flags),
-				   msecs_to_jiffies(phba->fc_ratov * 2000));
+				   secs_to_jiffies(phba->fc_ratov * 2));
 
 		if (!test_bit(NLP_WAIT_FOR_LOGO, &ndlp->save_flags))
 			goto logo_cmpl;
@@ -703,7 +703,7 @@ lpfc_vport_delete(struct fc_vport *fc_vport)
 				wait_event_timeout(waitq,
 				   !test_bit(NLP_WAIT_FOR_DA_ID,
 					     &ndlp->save_flags),
-				   msecs_to_jiffies(phba->fc_ratov * 2000));
+				   secs_to_jiffies(phba->fc_ratov * 2));
 			}
 
 			lpfc_printf_vlog(vport, KERN_INFO, LOG_VPORT | LOG_ELS,
-- 
2.49.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] scsi: lpfc: Use secs_to_jiffies() instead of msecs_to_jiffies()
  2025-04-28 17:16 [PATCH] scsi: lpfc: Use secs_to_jiffies() instead of msecs_to_jiffies() Thorsten Blum
@ 2025-04-29  0:42 ` Justin Tee
  2025-04-29  1:28 ` Martin K. Petersen
  2025-05-06  4:25 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Justin Tee @ 2025-04-29  0:42 UTC (permalink / raw)
  To: Thorsten Blum
  Cc: James Smart, Dick Kennedy, Justin Tee, James E.J. Bottomley,
	Martin K. Petersen, linux-scsi, linux-kernel

Reviewed-by: Justin Tee <justin.tee@broadcom.com>

Regards,
Justin

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] scsi: lpfc: Use secs_to_jiffies() instead of msecs_to_jiffies()
  2025-04-28 17:16 [PATCH] scsi: lpfc: Use secs_to_jiffies() instead of msecs_to_jiffies() Thorsten Blum
  2025-04-29  0:42 ` Justin Tee
@ 2025-04-29  1:28 ` Martin K. Petersen
  2025-05-06  4:25 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2025-04-29  1:28 UTC (permalink / raw)
  To: Thorsten Blum
  Cc: James Smart, Dick Kennedy, James E.J. Bottomley,
	Martin K. Petersen, linux-scsi, linux-kernel


Thorsten,

> Use secs_to_jiffies() instead of msecs_to_jiffies() and avoid scaling
> the timeouts to milliseconds.

Applied to 6.16/scsi-staging, thanks!

-- 
Martin K. Petersen

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] scsi: lpfc: Use secs_to_jiffies() instead of msecs_to_jiffies()
  2025-04-28 17:16 [PATCH] scsi: lpfc: Use secs_to_jiffies() instead of msecs_to_jiffies() Thorsten Blum
  2025-04-29  0:42 ` Justin Tee
  2025-04-29  1:28 ` Martin K. Petersen
@ 2025-05-06  4:25 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2025-05-06  4:25 UTC (permalink / raw)
  To: James Smart, Dick Kennedy, James E.J. Bottomley, Thorsten Blum
  Cc: Martin K . Petersen, linux-scsi, linux-kernel

On Mon, 28 Apr 2025 19:16:26 +0200, Thorsten Blum wrote:

> Use secs_to_jiffies() instead of msecs_to_jiffies() and avoid scaling
> the timeouts to milliseconds.
> 
> No functional changes intended.
> 
> 

Applied to 6.16/scsi-queue, thanks!

[1/1] scsi: lpfc: Use secs_to_jiffies() instead of msecs_to_jiffies()
      https://git.kernel.org/mkp/scsi/c/edf147e215c6

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-05-06  4:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-28 17:16 [PATCH] scsi: lpfc: Use secs_to_jiffies() instead of msecs_to_jiffies() Thorsten Blum
2025-04-29  0:42 ` Justin Tee
2025-04-29  1:28 ` Martin K. Petersen
2025-05-06  4:25 ` Martin K. Petersen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox