This is a note to let you know that I've just added the patch titled scsi: lpfc: Correct size for cmdwqe/rspwqe for memset() to the 6.7-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-correct-size-for-cmdwqe-rspwqe-for-memset.patch and it can be found in the queue-6.7 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 16cc2ba71b9f6440805aef7f92ba0f031f79b765 Mon Sep 17 00:00:00 2001 From: Muhammad Usama Anjum <usama.anjum@xxxxxxxxxxxxx> Date: Mon, 4 Mar 2024 14:11:19 +0500 Subject: scsi: lpfc: Correct size for cmdwqe/rspwqe for memset() From: Muhammad Usama Anjum <usama.anjum@xxxxxxxxxxxxx> commit 16cc2ba71b9f6440805aef7f92ba0f031f79b765 upstream. The cmdwqe and rspwqe are of type lpfc_wqe128. They should be memset() with the same type. Fixes: 61910d6a5243 ("scsi: lpfc: SLI path split: Refactor CT paths") Signed-off-by: Muhammad Usama Anjum <usama.anjum@xxxxxxxxxxxxx> Link: https://lore.kernel.org/r/20240304091119.847060-1-usama.anjum@xxxxxxxxxxxxx Reviewed-by: Justin Tee <justin.tee@xxxxxxxxxxxx> Signed-off-by: Martin K. Petersen <martin.petersen@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/scsi/lpfc/lpfc_bsg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/scsi/lpfc/lpfc_bsg.c +++ b/drivers/scsi/lpfc/lpfc_bsg.c @@ -3169,10 +3169,10 @@ lpfc_bsg_diag_loopback_run(struct bsg_jo } cmdwqe = &cmdiocbq->wqe; - memset(cmdwqe, 0, sizeof(union lpfc_wqe)); + memset(cmdwqe, 0, sizeof(*cmdwqe)); if (phba->sli_rev < LPFC_SLI_REV4) { rspwqe = &rspiocbq->wqe; - memset(rspwqe, 0, sizeof(union lpfc_wqe)); + memset(rspwqe, 0, sizeof(*rspwqe)); } INIT_LIST_HEAD(&head); Patches currently in stable-queue which might be from usama.anjum@xxxxxxxxxxxxx are queue-6.7/scsi-lpfc-correct-size-for-wqe-for-memset.patch queue-6.7/scsi-lpfc-correct-size-for-cmdwqe-rspwqe-for-memset.patch queue-6.7/selftests-mm-gup_test-conform-test-to-tap-format-out.patch