All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scsi: hpsa: fix allocation size for scsi_host_alloc()
@ 2023-01-16 13:31 Alexey V. Vissarionov
  2023-01-16 22:41 ` Bart Van Assche
  0 siblings, 1 reply; 9+ messages in thread
From: Alexey V. Vissarionov @ 2023-01-16 13:31 UTC (permalink / raw)
  To: Don Brace
  Cc: James E.J. Bottomley, James Bottomley, Martin K. Petersen,
	Stephen M. Cameron, storagedev, linux-scsi, lvc-project, gremlin

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

The 'h' is a pointer to struct ctlr_info, so it's just 4 or 8
bytes, while the structure itself is much bigger.

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Fixes: b705690d8d16f708 ("[SCSI] hpsa: combine hpsa_scsi_detect and hpsa_register_scsi")
Signed-off-by: Alexey V. Vissarionov <gremlin@altlinux.org>

diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 4dbf51e2623ad543..f6da34850af9dd46 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -5850,7 +5850,7 @@ static int hpsa_scsi_host_alloc(struct ctlr_info *h)
 {
 	struct Scsi_Host *sh;
 
-	sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
+	sh = scsi_host_alloc(&hpsa_driver_template, sizeof(struct ctlr_info));
 	if (sh == NULL) {
 		dev_err(&h->pdev->dev, "scsi_host_alloc failed\n");
 		return -ENOMEM;


-- 
Alexey V. Vissarionov
gremlin ПРИ altlinux ТЧК org; +vii-cmiii-ccxxix-lxxix-xlii
GPG: 0D92F19E1C0DC36E27F61A29CD17E2B43D879005 @ hkp://keys.gnupg.net

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

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

end of thread, other threads:[~2023-01-19  0:30 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-16 13:31 [PATCH] scsi: hpsa: fix allocation size for scsi_host_alloc() Alexey V. Vissarionov
2023-01-16 22:41 ` Bart Van Assche
2023-01-17  9:56   ` Alexey V. Vissarionov
2023-01-17 10:35     ` [lvc-project] " Alexey Khoroshilov
2023-01-17 21:12       ` Alexey V. Vissarionov
2023-01-17 21:23         ` Bart Van Assche
2023-01-18  3:12           ` Alexey V. Vissarionov
2023-01-19  0:06             ` Martin K. Petersen
2023-01-19  0:21             ` Martin K. Petersen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.