mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2] scsi: lpfc: correct size for cmdwqe/rspwqe for memset
@ 2024-03-04  9:11 Muhammad Usama Anjum
  2024-03-04 18:25 ` Justin Tee
  2024-03-10 22:18 ` Martin K. Petersen
  0 siblings, 2 replies; 3+ messages in thread
From: Muhammad Usama Anjum @ 2024-03-04  9:11 UTC (permalink / raw)
  To: James Smart, Dick Kennedy, James E.J. Bottomley,
	Martin K. Petersen, Justin Tee
  Cc: Muhammad Usama Anjum, kernel, kernel-janitors, James Smart,
	linux-scsi, linux-kernel

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@collabora.com>
---
Changes since v1:
- Use *ptr instead of specifying type in sizeof
---
 drivers/scsi/lpfc/lpfc_bsg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/lpfc/lpfc_bsg.c b/drivers/scsi/lpfc/lpfc_bsg.c
index d80e6e81053b0..7d5275d3a7406 100644
--- 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_job *job)
 	}
 
 	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);
-- 
2.39.2


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

* Re: [PATCH v2] scsi: lpfc: correct size for cmdwqe/rspwqe for memset
  2024-03-04  9:11 [PATCH v2] scsi: lpfc: correct size for cmdwqe/rspwqe for memset Muhammad Usama Anjum
@ 2024-03-04 18:25 ` Justin Tee
  2024-03-10 22:18 ` Martin K. Petersen
  1 sibling, 0 replies; 3+ messages in thread
From: Justin Tee @ 2024-03-04 18:25 UTC (permalink / raw)
  To: Muhammad Usama Anjum
  Cc: James Smart, Dick Kennedy, James E.J. Bottomley,
	Martin K. Petersen, kernel, kernel-janitors, James Smart,
	linux-scsi, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1929 bytes --]

> 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@collabora.com>
> ---
> Changes since v1:
> - Use *ptr instead of specifying type in sizeof
> ---
>  drivers/scsi/lpfc/lpfc_bsg.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/scsi/lpfc/lpfc_bsg.c b/drivers/scsi/lpfc/lpfc_bsg.c
> index d80e6e81053b0..7d5275d3a7406 100644
> --- 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_job *job)
>         }
>
>         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);
> --
> 2.39.2
>

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

-- 
This electronic communication and the information and any files transmitted 
with it, or attached to it, are confidential and are intended solely for 
the use of the individual or entity to whom it is addressed and may contain 
information that is confidential, legally privileged, protected by privacy 
laws, or otherwise restricted from disclosure to anyone else. If you are 
not the intended recipient or the person responsible for delivering the 
e-mail to the intended recipient, you are hereby notified that any use, 
copying, distributing, dissemination, forwarding, printing, or copying of 
this e-mail is strictly prohibited. If you received this e-mail in error, 
please return the e-mail to the sender, delete it from your computer, and 
destroy any printed copy of it.

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4203 bytes --]

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

* Re: [PATCH v2] scsi: lpfc: correct size for cmdwqe/rspwqe for memset
  2024-03-04  9:11 [PATCH v2] scsi: lpfc: correct size for cmdwqe/rspwqe for memset Muhammad Usama Anjum
  2024-03-04 18:25 ` Justin Tee
@ 2024-03-10 22:18 ` Martin K. Petersen
  1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2024-03-10 22:18 UTC (permalink / raw)
  To: Muhammad Usama Anjum
  Cc: James Smart, Dick Kennedy, James E.J. Bottomley,
	Martin K. Petersen, Justin Tee, kernel, kernel-janitors,
	James Smart, linux-scsi, linux-kernel


Muhammad,

> The cmdwqe and rspwqe are of type lpfc_wqe128. They should be memset
> with the same type.

Applied to 6.9/scsi-staging, thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

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

end of thread, other threads:[~2024-03-10 22:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-04  9:11 [PATCH v2] scsi: lpfc: correct size for cmdwqe/rspwqe for memset Muhammad Usama Anjum
2024-03-04 18:25 ` Justin Tee
2024-03-10 22:18 ` 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

all inboxes | Powered by JetHome®