]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
PCI: Do not run NVidia quirks related to MSI with MSI disabled
authorRafael J. Wysocki <rjw@sisk.pl>
Fri, 23 Jul 2010 20:19:55 +0000 (22:19 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 13 Aug 2010 20:19:33 +0000 (13:19 -0700)
commit 3d2a531804d16cd8df6dbbb0429c6f143e756049 upstream.

There is no reason to run NVidia-specific quirks related to HT MSI
mappings with MSI disabled via pci=nomsi, so make
__nv_msi_ht_cap_quirk() return immediately in that case.

This allows at least one machine to boot 100% of the time with
pci=nomsi (it still doesn't boot reliably without that).

Addresses https://bugzilla.kernel.org/show_bug.cgi?id=16443 .

Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/pci/quirks.c

index c0de0b999c9128001489f2d4818709983bbe3bc9..922e15d45c7b395a55907c33e2c9dc8c21d3ea2a 100644 (file)
@@ -2356,6 +2356,9 @@ static void __devinit __nv_msi_ht_cap_quirk(struct pci_dev *dev, int all)
        int pos;
        int found;
 
+       if (!pci_msi_enabled())
+               return;
+
        /* check if there is HT MSI cap or enabled on this device */
        found = ht_check_msi_mapping(dev);