diff mbox

Move set_pci_bus_resources_arch_default into arch/x86

Message ID 49EA09BD.7070806@kernel.org (mailing list archive)
State Accepted, archived
Headers show

Commit Message

Yinghai Lu April 18, 2009, 5:11 p.m. UTC
Matthew Wilcox wrote:
> On Sat, Apr 18, 2009 at 12:56:34AM -0700, Yinghai Lu wrote:
>> 1. put the calling in pci_create_bus, archs other than x86 will have
>> blank weak function
>> 2. if put that calling in pci_scan_child_bus, will make every child bus
>> do that checking on x86 platform.
>>
>> other arch does not gain anything in final result
> 
> Having x86 do its PCI fixups somewhere different from every other arch is
> confusing.  I know this because it confused me.  This isn't about saving
> a couple of hundred cycles at boot time, it's about maintainability.
> 

ok, I withdraw the nacked-by.

Jesse, please apply following patch too.

[PATCH] x86/pci: x86_pci_root_bus_res_quirks

1. change the name to x86_pci_root_bus_res_quirks from
	 set_pci_bus_resources_arch_default
2. move that weak function from common.c to i386.c aka
	 can not put that in same function with calling function
3. before calling that check if it is root bus in pcibios_fixup_bus

[mpact: fix link and clean up]

Signed-off-by: Yinghai Lu <yinghai@kernel.org>

---
 arch/x86/include/asm/topology.h |    2 +-
 arch/x86/pci/amd_bus.c          |    2 +-
 arch/x86/pci/common.c           |    8 +++-----
 arch/x86/pci/i386.c             |    4 ++++
 4 files changed, 9 insertions(+), 7 deletions(-)



--
To unsubscribe from this list: send the line "unsubscribe linux-pci" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Matthew Wilcox April 18, 2009, 8:29 p.m. UTC | #1
On Sat, Apr 18, 2009 at 10:11:25AM -0700, Yinghai Lu wrote:
> Jesse, please apply following patch too.
> 
> [PATCH] x86/pci: x86_pci_root_bus_res_quirks
> 
> 1. change the name to x86_pci_root_bus_res_quirks from
> 	 set_pci_bus_resources_arch_default
> 2. move that weak function from common.c to i386.c aka
> 	 can not put that in same function with calling function
> 3. before calling that check if it is root bus in pcibios_fixup_bus
> 
> [mpact: fix link and clean up]
> 
> Signed-off-by: Yinghai Lu <yinghai@kernel.org>

Reviewed-by: Matthew Wilcox <willy@linux.intel.com>
diff mbox

Patch

Index: linux-2.6/arch/x86/include/asm/topology.h
===================================================================
--- linux-2.6.orig/arch/x86/include/asm/topology.h
+++ linux-2.6/arch/x86/include/asm/topology.h
@@ -200,7 +200,7 @@  static inline void arch_fix_phys_package
 }
 
 struct pci_bus;
-void set_pci_bus_resources_arch_default(struct pci_bus *b);
+void x86_pci_root_bus_res_quirks(struct pci_bus *b);
 
 #ifdef CONFIG_SMP
 #define mc_capable()	(cpumask_weight(cpu_core_mask(0)) != nr_cpu_ids)
Index: linux-2.6/arch/x86/pci/amd_bus.c
===================================================================
--- linux-2.6.orig/arch/x86/pci/amd_bus.c
+++ linux-2.6/arch/x86/pci/amd_bus.c
@@ -94,7 +94,7 @@  struct pci_root_info {
 static int pci_root_num;
 static struct pci_root_info pci_root_info[PCI_ROOT_NR];
 
-void set_pci_bus_resources_arch_default(struct pci_bus *b)
+void x86_pci_root_bus_res_quirks(struct pci_bus *b)
 {
 	int i;
 	int j;
Index: linux-2.6/arch/x86/pci/common.c
===================================================================
--- linux-2.6.orig/arch/x86/pci/common.c
+++ linux-2.6/arch/x86/pci/common.c
@@ -142,10 +142,6 @@  static void __devinit pcibios_fixup_devi
 	}
 }
 
-void __attribute__((weak)) set_pci_bus_resources_arch_default(struct pci_bus *b)
-{
-}
-
 /*
  *  Called after each bus is probed, but before its children
  *  are examined.
@@ -155,7 +151,9 @@  void __devinit pcibios_fixup_bus(struct
 {
 	struct pci_dev *dev;
 
-	set_pci_bus_resources_arch_default(b);
+	/* root bus? */
+	if (!b->parent)
+		x86_pci_root_bus_res_quirks(b);
 	pci_read_bridge_bases(b);
 	list_for_each_entry(dev, &b->devices, bus_list)
 		pcibios_fixup_device_resources(dev);
Index: linux-2.6/arch/x86/pci/i386.c
===================================================================
--- linux-2.6.orig/arch/x86/pci/i386.c
+++ linux-2.6/arch/x86/pci/i386.c
@@ -238,6 +238,10 @@  void __init pcibios_resource_survey(void
  */
 fs_initcall(pcibios_assign_resources);
 
+void __weak x86_pci_root_bus_res_quirks(struct pci_bus *b)
+{
+}
+
 /*
  *  If we set up a device for bus mastering, we need to check the latency
  *  timer as certain crappy BIOSes forget to set it properly.