The patch titled pci: use pci=bfsort for HP DL385 G2, DL585 G2 has been added to the -mm tree. Its filename is pci-use-pci=bfsort-for-hp-dl385-g2-dl585-g2.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: use pci=bfsort for HP DL385 G2, DL585 G2 From: Michal Schmidt <mschmidt@xxxxxxxxxx> HP ProLiant systems DL385 G2 and DL585 G2 need pci=bfsort to enumerate PCI devices in the expected order. Matt sayeth: biosdevname is a userspace app I wrote to help solve this so we don't need to patch the kernel for future systems. It's not integrated into any distributions properly yet, but is included in openSUSE 10.3 and Fedora 8 for people who want to download and install it there. It acts as a udev helper. For the time being, patching the kernel is necessary. I really hope biosdevname eliminates that need in future distributions. http://linux.dell.com/biosdevname/ Signed-off-by: Michal Schmidt <mschmidt@xxxxxxxxxx> Cc: <john.cagle@xxxxxx> Cc: Matt Domsch <Matt_Domsch@xxxxxxxx> Cc: Andy Gospodarek <andy@xxxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/i386/pci/common.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff -puN arch/i386/pci/common.c~pci-use-pci=bfsort-for-hp-dl385-g2-dl585-g2 arch/i386/pci/common.c --- a/arch/i386/pci/common.c~pci-use-pci=bfsort-for-hp-dl385-g2-dl585-g2 +++ a/arch/i386/pci/common.c @@ -297,6 +297,22 @@ static struct dmi_system_id __devinitdat }, }, #endif + { + .callback = set_bf_sort, + .ident = "HP ProLiant DL385 G2", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "HP"), + DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL385 G2"), + }, + }, + { + .callback = set_bf_sort, + .ident = "HP ProLiant DL585 G2", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "HP"), + DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL585 G2"), + }, + }, {} }; _ Patches currently in -mm which might be from mschmidt@xxxxxxxxxx are origin.patch pci-use-pci=bfsort-for-hp-dl385-g2-dl585-g2.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