The patch titled
     pci: use pci=bfsort for HP DL385 G2, DL585 G2
has been removed from the -mm tree.  Its filename was
     pci-use-pci=bfsort-for-hp-dl385-g2-dl585-g2.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: pci: use pci=bfsort for HP DL385 G2, DL585 G2
From: Michal Schmidt <[EMAIL PROTECTED]>

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 <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Cc: Matt Domsch <[EMAIL PROTECTED]>
Acked-by: Andy Gospodarek <[EMAIL PROTECTED]>
Cc: Greg KH <[EMAIL PROTECTED]>
Cc: Andi Kleen <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 arch/x86/pci/common.c |   16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff -puN arch/x86/pci/common.c~pci-use-pci=bfsort-for-hp-dl385-g2-dl585-g2 
arch/x86/pci/common.c
--- a/arch/x86/pci/common.c~pci-use-pci=bfsort-for-hp-dl385-g2-dl585-g2
+++ a/arch/x86/pci/common.c
@@ -315,6 +315,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 [EMAIL PROTECTED] are

git-x86.patch
proc-loadavg-reading-race.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to