The patch titled x86_64: AMD Family 10h enable ext config in quirk has been removed from the -mm tree. Its filename was x86_64-set-cfg_size-for-amd-family-10h-in-case-mmconfig-is-used-vs-gregkh-pci-pci-make-pci-extended-config-space-a-driver-opt-in.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: x86_64: AMD Family 10h enable ext config in quirk From: Yinghai Lu <Yinghai.Lu@xxxxxxx> Because of changes of gregkh-pci-pci-make-pci-extended-config-space-a-driver-opt-in.patch need to call pci_enable_ext_config to enable mmconfig before set right cfg_size even MCFG is there Signed-off-by: Yinghai Lu <yinghai.lu@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/pci/fixup.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff -puN arch/x86/pci/fixup.c~x86_64-set-cfg_size-for-amd-family-10h-in-case-mmconfig-is-used-vs-gregkh-pci-pci-make-pci-extended-config-space-a-driver-opt-in arch/x86/pci/fixup.c --- a/arch/x86/pci/fixup.c~x86_64-set-cfg_size-for-amd-family-10h-in-case-mmconfig-is-used-vs-gregkh-pci-pci-make-pci-extended-config-space-a-driver-opt-in +++ a/arch/x86/pci/fixup.c @@ -498,10 +498,12 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_S * access it. Maybe we don't have a way to generate extended config space * accesses. So check it */ -static void fam10h_pci_cfg_space_size(struct pci_dev *dev) +static void fam10h_enable_pci_ext_cfg(struct pci_dev *dev) { + pci_enable_ext_config(dev); + /* recheck cfg_size without pcie_pcix checking */ dev->cfg_size = pci_cfg_space_size_ext(dev, 0); } DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_AMD, PCI_ANY_ID, - fam10h_pci_cfg_space_size); + fam10h_enable_pci_ext_cfg); _ Patches currently in -mm which might be from Yinghai.Lu@xxxxxxx are origin.patch git-cpufreq.patch serial-keep-the-dtr-setting-for-serial-console.patch git-x86.patch pci-dont-load-acpi_php-when-acpi-is-disabled.patch x86-clear-pci_mmcfg_virt-when-mmcfg-get-rejected.patch x86-mmconf-enable-mcfg-early.patch x86-mmconf-enable-mcfg-early-cleanup.patch x86_64-check-and-enable-mmconfig-for-amd-family-10h-opteron-v3.patch x86_64-check-msr-to-get-mmconfig-for-amd-family-10h-opteron-v3.patch x86_64-set-cfg_size-for-amd-family-10h-in-case-mmconfig-is-used.patch x86_64-set-cfg_size-for-amd-family-10h-in-case-mmconfig-is-used-vs-gregkh-pci-pci-make-pci-extended-config-space-a-driver-opt-in.patch kernel-printkc-concerns-about-the-console-handover.patch convert-loglevel-related-kernel-boot-parameters-to-early_param.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