* [PATCH v2] scsi: lpfc: rework lpfc_sli4_fcf_rr_next_index_get()
@ 2025-12-05 23:58 Yury Norov (NVIDIA)
2025-12-08 23:06 ` Justin Tee
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Yury Norov (NVIDIA) @ 2025-12-05 23:58 UTC (permalink / raw)
To: James Smart, Dick Kennedy, James E.J. Bottomley,
Martin K. Petersen, Justin Tee, linux-scsi, linux-kernel
Cc: Yury Norov (NVIDIA)
The function opencodes for_each_set_bit_wrap(). Use it, and while there
switch from goto-driven codeflow to more high-level constructions.
Signed-off-by: Yury Norov (NVIDIA) <yury.norov@gmail.com>
---
v1: https://lore.kernel.org/all/20250917141806.661826-1-yury.norov@gmail.com/
v2: tweak check against LPFC_FCF_FLOGI_FAILED flag (Justin);
drivers/scsi/lpfc/lpfc_sli.c | 62 +++++++++++-------------------------
1 file changed, 18 insertions(+), 44 deletions(-)
diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c
index 7ea7c4245c69..c330db3e54dc 100644
--- a/drivers/scsi/lpfc/lpfc_sli.c
+++ b/drivers/scsi/lpfc/lpfc_sli.c
@@ -20361,62 +20361,36 @@ lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
uint16_t
lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
{
- uint16_t next_fcf_index;
+ uint16_t next;
-initial_priority:
- /* Search start from next bit of currently registered FCF index */
- next_fcf_index = phba->fcf.current_rec.fcf_indx;
-
-next_priority:
- /* Determine the next fcf index to check */
- next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
- next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
- LPFC_SLI4_FCF_TBL_INDX_MAX,
- next_fcf_index);
+ do {
+ for_each_set_bit_wrap(next, phba->fcf.fcf_rr_bmask,
+ LPFC_SLI4_FCF_TBL_INDX_MAX, phba->fcf.current_rec.fcf_indx) {
+ if (next == phba->fcf.current_rec.fcf_indx)
+ continue;
- /* Wrap around condition on phba->fcf.fcf_rr_bmask */
- if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
- /*
- * If we have wrapped then we need to clear the bits that
- * have been tested so that we can detect when we should
- * change the priority level.
- */
- next_fcf_index = find_first_bit(phba->fcf.fcf_rr_bmask,
- LPFC_SLI4_FCF_TBL_INDX_MAX);
- }
+ if (!(phba->fcf.fcf_pri[next].fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)) {
+ lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
+ "2845 Get next roundrobin failover FCF (x%x)\n", next);
+ return next;
+ }
+ if (list_is_singular(&phba->fcf.fcf_pri_list))
+ return LPFC_FCOE_FCF_NEXT_NONE;
+ }
- /* Check roundrobin failover list empty condition */
- if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
- next_fcf_index == phba->fcf.current_rec.fcf_indx) {
/*
* If next fcf index is not found check if there are lower
* Priority level fcf's in the fcf_priority list.
* Set up the rr_bmask with all of the avaiable fcf bits
* at that level and continue the selection process.
*/
- if (lpfc_check_next_fcf_pri_level(phba))
- goto initial_priority;
- lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
- "2844 No roundrobin failover FCF available\n");
-
- return LPFC_FCOE_FCF_NEXT_NONE;
- }
-
- if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
- phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
- LPFC_FCF_FLOGI_FAILED) {
- if (list_is_singular(&phba->fcf.fcf_pri_list))
- return LPFC_FCOE_FCF_NEXT_NONE;
+ } while (lpfc_check_next_fcf_pri_level(phba));
- goto next_priority;
- }
-
- lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
- "2845 Get next roundrobin failover FCF (x%x)\n",
- next_fcf_index);
+ lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
+ "2844 No roundrobin failover FCF available\n");
- return next_fcf_index;
+ return LPFC_FCOE_FCF_NEXT_NONE;
}
/**
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v2] scsi: lpfc: rework lpfc_sli4_fcf_rr_next_index_get()
2025-12-05 23:58 [PATCH v2] scsi: lpfc: rework lpfc_sli4_fcf_rr_next_index_get() Yury Norov (NVIDIA)
@ 2025-12-08 23:06 ` Justin Tee
2025-12-17 2:51 ` Martin K. Petersen
2026-01-04 21:43 ` Martin K. Petersen
2 siblings, 0 replies; 4+ messages in thread
From: Justin Tee @ 2025-12-08 23:06 UTC (permalink / raw)
To: Yury Norov (NVIDIA)
Cc: James Smart, Dick Kennedy, 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 v2] scsi: lpfc: rework lpfc_sli4_fcf_rr_next_index_get()
2025-12-05 23:58 [PATCH v2] scsi: lpfc: rework lpfc_sli4_fcf_rr_next_index_get() Yury Norov (NVIDIA)
2025-12-08 23:06 ` Justin Tee
@ 2025-12-17 2:51 ` Martin K. Petersen
2026-01-04 21:43 ` Martin K. Petersen
2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2025-12-17 2:51 UTC (permalink / raw)
To: Yury Norov (NVIDIA)
Cc: James Smart, Dick Kennedy, James E.J. Bottomley,
Martin K. Petersen, Justin Tee, linux-scsi, linux-kernel
Yury,
> The function opencodes for_each_set_bit_wrap(). Use it, and while there
> switch from goto-driven codeflow to more high-level constructions.
Applied to 6.20/scsi-staging, thanks!
--
Martin K. Petersen
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] scsi: lpfc: rework lpfc_sli4_fcf_rr_next_index_get()
2025-12-05 23:58 [PATCH v2] scsi: lpfc: rework lpfc_sli4_fcf_rr_next_index_get() Yury Norov (NVIDIA)
2025-12-08 23:06 ` Justin Tee
2025-12-17 2:51 ` Martin K. Petersen
@ 2026-01-04 21:43 ` Martin K. Petersen
2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2026-01-04 21:43 UTC (permalink / raw)
To: James Smart, Dick Kennedy, James E.J. Bottomley, Justin Tee,
linux-scsi, linux-kernel, Yury Norov (NVIDIA)
Cc: Martin K . Petersen
On Fri, 05 Dec 2025 18:58:08 -0500, Yury Norov (NVIDIA) wrote:
> The function opencodes for_each_set_bit_wrap(). Use it, and while there
> switch from goto-driven codeflow to more high-level constructions.
>
>
Applied to 6.20/scsi-queue, thanks!
[1/1] scsi: lpfc: rework lpfc_sli4_fcf_rr_next_index_get()
https://git.kernel.org/mkp/scsi/c/1a56e63c8216
--
Martin K. Petersen
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-01-04 21:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-05 23:58 [PATCH v2] scsi: lpfc: rework lpfc_sli4_fcf_rr_next_index_get() Yury Norov (NVIDIA)
2025-12-08 23:06 ` Justin Tee
2025-12-17 2:51 ` Martin K. Petersen
2026-01-04 21:43 ` 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