aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Starikovskiy <astarikovskiy@suse.de>2008-03-11 12:45:48 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:40:58 -0400
commit6079d2d5d11122eb52721f0f3c828952a490e6c1 (patch)
tree7882df91e3953cf0d6097548c35c90fb43a2e045
parent5d570cbbf25a62e9c077f5b351fb142dbfc67288 (diff)
x86: move quad_local_to_mp_bus_id to numa.c
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/mpparse_32.c1
-rw-r--r--arch/x86/pci/numa.c2
-rw-r--r--include/asm-x86/mach-numaq/mach_mpparse.h2
-rw-r--r--include/asm-x86/mpspec.h1
4 files changed, 4 insertions, 2 deletions
diff --git a/arch/x86/kernel/mpparse_32.c b/arch/x86/kernel/mpparse_32.c
index b2aded3fbfec..2abc9392799a 100644
--- a/arch/x86/kernel/mpparse_32.c
+++ b/arch/x86/kernel/mpparse_32.c
@@ -45,7 +45,6 @@ int apic_version [MAX_APICS];
45int mp_bus_id_to_type [MAX_MP_BUSSES]; 45int mp_bus_id_to_type [MAX_MP_BUSSES];
46int mp_bus_id_to_node [MAX_MP_BUSSES]; 46int mp_bus_id_to_node [MAX_MP_BUSSES];
47int mp_bus_id_to_local [MAX_MP_BUSSES]; 47int mp_bus_id_to_local [MAX_MP_BUSSES];
48int quad_local_to_mp_bus_id [NR_CPUS/4][4];
49int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 }; 48int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
50static int mp_current_pci_id; 49static int mp_current_pci_id;
51 50
diff --git a/arch/x86/pci/numa.c b/arch/x86/pci/numa.c
index 55270c26237c..3248d3ee388f 100644
--- a/arch/x86/pci/numa.c
+++ b/arch/x86/pci/numa.c
@@ -13,6 +13,8 @@
13 13
14#define BUS2QUAD(global) (mp_bus_id_to_node[global]) 14#define BUS2QUAD(global) (mp_bus_id_to_node[global])
15#define BUS2LOCAL(global) (mp_bus_id_to_local[global]) 15#define BUS2LOCAL(global) (mp_bus_id_to_local[global])
16
17int quad_local_to_mp_bus_id [NR_CPUS/4][4];
16#define QUADLOCAL2BUS(quad,local) (quad_local_to_mp_bus_id[quad][local]) 18#define QUADLOCAL2BUS(quad,local) (quad_local_to_mp_bus_id[quad][local])
17 19
18extern void *xquad_portio; /* Where the IO area was mapped */ 20extern void *xquad_portio; /* Where the IO area was mapped */
diff --git a/include/asm-x86/mach-numaq/mach_mpparse.h b/include/asm-x86/mach-numaq/mach_mpparse.h
index 51bbac8fc0c2..cd21f289e6b7 100644
--- a/include/asm-x86/mach-numaq/mach_mpparse.h
+++ b/include/asm-x86/mach-numaq/mach_mpparse.h
@@ -12,6 +12,8 @@ static inline void mpc_oem_bus_info(struct mpc_config_bus *m, char *name,
12 printk("Bus #%d is %s (node %d)\n", m->mpc_busid, name, quad); 12 printk("Bus #%d is %s (node %d)\n", m->mpc_busid, name, quad);
13} 13}
14 14
15extern int quad_local_to_mp_bus_id[NR_CPUS/4][4];
16
15static inline void mpc_oem_pci_bus(struct mpc_config_bus *m, 17static inline void mpc_oem_pci_bus(struct mpc_config_bus *m,
16 struct mpc_config_translation *translation) 18 struct mpc_config_translation *translation)
17{ 19{
diff --git a/include/asm-x86/mpspec.h b/include/asm-x86/mpspec.h
index 781ad74ab9e9..dbd63f8d4750 100644
--- a/include/asm-x86/mpspec.h
+++ b/include/asm-x86/mpspec.h
@@ -9,7 +9,6 @@
9extern int mp_bus_id_to_type[MAX_MP_BUSSES]; 9extern int mp_bus_id_to_type[MAX_MP_BUSSES];
10extern int mp_bus_id_to_node[MAX_MP_BUSSES]; 10extern int mp_bus_id_to_node[MAX_MP_BUSSES];
11extern int mp_bus_id_to_local[MAX_MP_BUSSES]; 11extern int mp_bus_id_to_local[MAX_MP_BUSSES];
12extern int quad_local_to_mp_bus_id[NR_CPUS/4][4];
13 12
14extern unsigned int def_to_bigsmp; 13extern unsigned int def_to_bigsmp;
15extern int apic_version[MAX_APICS]; 14extern int apic_version[MAX_APICS];