mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-06 05:13:18 +00:00
scsi: megaraid: silence a static checker bug
If we had more than 32 megaraid cards then it would cause memory corruption. That's not likely, of course, but it's handy to enforce it and make the static checker happy. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
c09a21d8dd
commit
27e833daba
@ -4199,6 +4199,9 @@ megaraid_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
int irq, i, j;
|
||||
int error = -ENODEV;
|
||||
|
||||
if (hba_count >= MAX_CONTROLLERS)
|
||||
goto out;
|
||||
|
||||
if (pci_enable_device(pdev))
|
||||
goto out;
|
||||
pci_set_master(pdev);
|
||||
|
Loading…
Reference in New Issue
Block a user