The patch titled PCI: i386 mmconfig: don't forget bus number when setting fallback_slots bits has been removed from the -mm tree. Its filename is pci-i386-mmconfig-dont-forget-bus-number-when-setting-fallback_slots-bits.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: PCI: i386 mmconfig: don't forget bus number when setting fallback_slots bits From: Daniel Ritz <daniel.ritz-ml@xxxxxxxxxxxxxx> On i386 PCI mmconfig forgets the bus number when setting the fallback_slots bits which means fallback to conf1 only works for bus 0. Signed-off-by: Daniel Ritz <daniel.ritz@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/pci/mmconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/pci/mmconfig.c~pci-i386-mmconfig-dont-forget-bus-number-when-setting-fallback_slots-bits arch/i386/pci/mmconfig.c --- a/arch/i386/pci/mmconfig.c~pci-i386-mmconfig-dont-forget-bus-number-when-setting-fallback_slots-bits +++ a/arch/i386/pci/mmconfig.c @@ -178,7 +178,7 @@ static __init void unreachable_devices(v pci_exp_set_dev_base(addr, k, PCI_DEVFN(i, 0)); if (addr == 0 || readl((u32 __iomem *)mmcfg_virt_addr) != val1) { - set_bit(i, fallback_slots); + set_bit(i + 32*k, fallback_slots); printk(KERN_NOTICE "PCI: No mmconfig possible on %x:%x\n", k, i); } _ Patches currently in -mm which might be from daniel.ritz-ml@xxxxxxxxxxxxxx are pci-add-ich7-8-acpi-gpio-io-resource-quirks.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