This is a note to let you know that I've just added the patch titled scsi: lpfc: Fix element offset in __lpfc_sli_release_iocbq_s4() to the 5.15-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: scsi-lpfc-fix-element-offset-in-__lpfc_sli_release_iocbq_s4.patch and it can be found in the queue-5.15 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 84c6f99e39074d45f75986e42ca28e27c140fd0d Mon Sep 17 00:00:00 2001 From: James Smart <jsmart2021@xxxxxxxxx> Date: Thu, 5 May 2022 20:55:08 -0700 Subject: scsi: lpfc: Fix element offset in __lpfc_sli_release_iocbq_s4() From: James Smart <jsmart2021@xxxxxxxxx> commit 84c6f99e39074d45f75986e42ca28e27c140fd0d upstream. The prior commit that moved from iocb elements to explicit wqe elements missed a name change. Correct __lpfc_sli_release_iocbq_s4() to reference wqe rather than iocb. Link: https://lore.kernel.org/r/20220506035519.50908-2-jsmart2021@xxxxxxxxx Fixes: a680a9298e7b ("scsi: lpfc: SLI path split: Refactor lpfc_iocbq") Co-developed-by: Justin Tee <justin.tee@xxxxxxxxxxxx> Signed-off-by: Justin Tee <justin.tee@xxxxxxxxxxxx> Signed-off-by: James Smart <jsmart2021@xxxxxxxxx> Signed-off-by: Martin K. Petersen <martin.petersen@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/scsi/lpfc/lpfc_sli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/scsi/lpfc/lpfc_sli.c +++ b/drivers/scsi/lpfc/lpfc_sli.c @@ -1384,7 +1384,7 @@ static void __lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq) { struct lpfc_sglq *sglq; - size_t start_clean = offsetof(struct lpfc_iocbq, iocb); + size_t start_clean = offsetof(struct lpfc_iocbq, wqe); unsigned long iflag = 0; struct lpfc_sli_ring *pring; Patches currently in stable-queue which might be from jsmart2021@xxxxxxxxx are queue-5.15/scsi-lpfc-fix-eeh-support-for-nvme-i-o.patch queue-5.15/scsi-lpfc-fix-locking-for-lpfc_sli_iocbq_lookup.patch queue-5.15/scsi-lpfc-fix-element-offset-in-__lpfc_sli_release_iocbq_s4.patch queue-5.15/scsi-lpfc-remove-extra-atomic_inc-on-cmd_pending-in-.patch queue-5.15/scsi-lpfc-sli-path-split-refactor-fast-and-slow-path.patch queue-5.15/scsi-lpfc-sli-path-split-refactor-lpfc_iocbq.patch queue-5.15/scsi-lpfc-sli-path-split-refactor-scsi-paths.patch queue-5.15/scsi-lpfc-resolve-some-cleanup-issues-following-sli-path-refactoring.patch