The patch titled PCI: disable MSI by default on systems with Serverworks HT1000 chips has been added to the -mm tree. Its filename is pci-disable-msi-by-default-on-systems-with-serverworks-ht1000-chips.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: PCI: disable MSI by default on systems with Serverworks HT1000 chips From: Andy Gospodarek <andy@xxxxxxxxxxxxx> I've been seeing lots of messages like these: eth0: No interrupt was generated using MSI, switching to INTx mode. Please report this failure to the PCI maintainer and include system chipset information. On several systems that use the following Severworks HT1000 (also sometimes labeled as a Broadcom chipset as well) bridge chips. It doesn't appear MSI works well (if at all) on these systems. Signed-off-by: Andy Gospodarek <andy@xxxxxxxxxxxxx> Cc: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/pci/quirks.c | 1 + include/linux/pci_ids.h | 1 + 2 files changed, 2 insertions(+) diff -puN drivers/pci/quirks.c~pci-disable-msi-by-default-on-systems-with-serverworks-ht1000-chips drivers/pci/quirks.c --- a/drivers/pci/quirks.c~pci-disable-msi-by-default-on-systems-with-serverworks-ht1000-chips +++ a/drivers/pci/quirks.c @@ -1637,6 +1637,7 @@ static void __init quirk_svw_msi(struct printk(KERN_WARNING "PCI: MSI quirk detected. MSI deactivated.\n"); } DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_GCNB_LE, quirk_svw_msi); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_HT1000_PCIX, quirk_svw_msi ); /* Disable MSI on chipsets that are known to not support it */ static void __devinit quirk_disable_msi(struct pci_dev *dev) diff -puN include/linux/pci_ids.h~pci-disable-msi-by-default-on-systems-with-serverworks-ht1000-chips include/linux/pci_ids.h --- a/include/linux/pci_ids.h~pci-disable-msi-by-default-on-systems-with-serverworks-ht1000-chips +++ a/include/linux/pci_ids.h @@ -1437,6 +1437,7 @@ #define PCI_DEVICE_ID_SERVERWORKS_LE 0x0009 #define PCI_DEVICE_ID_SERVERWORKS_GCNB_LE 0x0017 #define PCI_DEVICE_ID_SERVERWORKS_EPB 0x0103 +#define PCI_DEVICE_ID_SERVERWORKS_HT1000_PCIX 0x0104 #define PCI_DEVICE_ID_SERVERWORKS_HT2000_PCIE 0x0132 #define PCI_DEVICE_ID_SERVERWORKS_OSB4 0x0200 #define PCI_DEVICE_ID_SERVERWORKS_CSB5 0x0201 _ Patches currently in -mm which might be from andy@xxxxxxxxxxxxx are pci-disable-msi-by-default-on-systems-with-serverworks-ht1000-chips.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html