|
@@ -1209,6 +1209,13 @@ _base_check_enable_msix(struct MPT2SAS_ADAPTER *ioc)
|
|
|
u16 message_control;
|
|
|
|
|
|
|
|
|
+ /* Check whether controller SAS2008 B0 controller,
|
|
|
+ if it is SAS2008 B0 controller use IO-APIC instead of MSIX */
|
|
|
+ if (ioc->pdev->device == MPI2_MFGPAGE_DEVID_SAS2008 &&
|
|
|
+ ioc->pdev->revision == 0x01) {
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
base = pci_find_capability(ioc->pdev, PCI_CAP_ID_MSIX);
|
|
|
if (!base) {
|
|
|
dfailprintk(ioc, printk(MPT2SAS_INFO_FMT "msix not "
|