We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f13fd5 commit da7429fCopy full SHA for da7429f
drivers/scsi/qla2xxx/qla_isr.c
@@ -1829,6 +1829,18 @@ qla2x00_request_irqs(scsi_qla_host_t *ha)
1829
goto skip_msix;
1830
}
1831
1832
+ if (ha->pdev->subsystem_vendor == PCI_VENDOR_ID_HP &&
1833
+ (ha->pdev->subsystem_device == 0x7040 ||
1834
+ ha->pdev->subsystem_device == 0x7041 ||
1835
+ ha->pdev->subsystem_device == 0x1705)) {
1836
+ DEBUG2(qla_printk(KERN_WARNING, ha,
1837
+ "MSI-X: Unsupported ISP2432 SSVID/SSDID (0x%X, 0x%X).\n",
1838
+ ha->pdev->subsystem_vendor,
1839
+ ha->pdev->subsystem_device));
1840
+
1841
+ goto skip_msi;
1842
+ }
1843
1844
ret = qla24xx_enable_msix(ha);
1845
if (!ret) {
1846
DEBUG2(qla_printk(KERN_INFO, ha,
0 commit comments