The patch titled x86_64: fix bus numbering format in mmconfig warning has been added to the -mm tree. Its filename is x86_64-fix-bus-numbering-format-in-mmconfig-warning.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: x86_64: fix bus numbering format in mmconfig warning From: Brice Goglin <brice@xxxxxxxx> Make an mmconfig warning print the bus id with a regular format. Signed-off-by: Brice Goglin <brice@xxxxxxxx> Cc: Andi Kleen <ak@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/pci/mmconfig.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff -puN arch/x86_64/pci/mmconfig.c~x86_64-fix-bus-numbering-format-in-mmconfig-warning arch/x86_64/pci/mmconfig.c --- a/arch/x86_64/pci/mmconfig.c~x86_64-fix-bus-numbering-format-in-mmconfig-warning +++ a/arch/x86_64/pci/mmconfig.c @@ -156,9 +156,8 @@ static __init void unreachable_devices(v addr = pci_dev_base(0, k, PCI_DEVFN(i, 0)); if (addr == NULL|| readl(addr) != val1) { set_bit(i + 32*k, fallback_slots); - printk(KERN_NOTICE - "PCI: No mmconfig possible on device %x:%x\n", - k, i); + printk(KERN_NOTICE "PCI: No mmconfig possible" + " on device %02x:%02x\n", k, i); } } } _ Patches currently in -mm which might be from brice@xxxxxxxx are origin.patch pci-add-pci_cap_id_vndr.patch x86_64-fix-bus-numbering-format-in-mmconfig-warning.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