From: Greg KH To: torvalds@transmeta.com Cc: linux-kernel@vger.kernel.org, pcihpd-discuss@lists.sourceforge.net Subject: [BK PATCH] Yet more PCI fixes for 2.5.73 Hi, Here's some more PCI fixes that are against the latest 2.5.73 bk tree. They fix up the kobject bug in the pci hotplug drivers (the core was fixed in the patches sent yesterday), and change the pci_dev's slot_name to be a pointer to the struct device's bus_id. This provides us with the unique name needed for pci domain support. There's also a bugfix for the pci direct code in i386. Please pull from: bk://kernel.bkbits.net/gregkh/linux/pci-2.5 thanks, greg k-h p.s. I'll send these as patches in response to this email to lkml for those who want to see them. ----- arch/i386/pci/direct.c | 106 ++++++++++++++++++++------------ drivers/pci/hotplug/acpiphp_core.c | 30 ++++++--- drivers/pci/hotplug/cpci_hotplug_core.c | 22 ++++-- drivers/pci/hotplug/cpqphp_core.c | 38 ++++++----- drivers/pci/hotplug/ibmphp.h | 3 drivers/pci/hotplug/ibmphp_core.c | 25 ------- drivers/pci/hotplug/ibmphp_ebda.c | 79 ++++++++++++++++++++--- drivers/pci/hotplug/ibmphp_hpc.c | 68 -------------------- drivers/pci/hotplug/pcihp_skeleton.c | 42 ++++++++---- drivers/pci/probe.c | 16 ++-- include/linux/pci.h | 10 ++- 11 files changed, 245 insertions(+), 194 deletions(-) ----- Greg Kroah-Hartman: o PCI Hotplug: ibmphp: add release() callback and other minor cleanups o PCI Hotplug: cpqphp: add release() callback and other minor cleanups o PCI Hotplug: cpci: fix delete bug and add release() callback o PCI Hotplug: acpiphp: add release() callback o PCI Hotplug: pcihp_skeleton: fix delete bug and add release() callback Matthew Wilcox: o PCI: create pci_name() o PCI: i386/pci/direct.c fixes