diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-10 01:47:37 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-10 17:57:09 -0500 |
commit | 068790334cececc3d2d945617ccc585477da2e38 (patch) | |
tree | 5a9c55238ef9ae4114d99f424320080cc3842384 /arch | |
parent | 1de8cd3cb9f61e854e743c7210df43db517d4832 (diff) |
x86: smp.h move cpu_callin_mask and cpu_callin_map declartion to cpumask.h
Impact: cleanup
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/cpumask.h | 19 | ||||
-rw-r--r-- | arch/x86/include/asm/smp.h | 3 | ||||
-rw-r--r-- | arch/x86/kernel/cpu/common.c | 1 | ||||
-rw-r--r-- | arch/x86/kernel/setup_percpu.c | 1 | ||||
-rw-r--r-- | arch/x86/kernel/smpboot.c | 1 |
5 files changed, 22 insertions, 3 deletions
diff --git a/arch/x86/include/asm/cpumask.h b/arch/x86/include/asm/cpumask.h new file mode 100644 index 000000000000..308dddd56329 --- /dev/null +++ b/arch/x86/include/asm/cpumask.h | |||
@@ -0,0 +1,19 @@ | |||
1 | #ifndef _ASM_X86_CPUMASK_H | ||
2 | #define _ASM_X86_CPUMASK_H | ||
3 | #ifndef __ASSEMBLY__ | ||
4 | #include <linux/cpumask.h> | ||
5 | |||
6 | #ifdef CONFIG_X86_64 | ||
7 | |||
8 | extern cpumask_var_t cpu_callin_mask; | ||
9 | |||
10 | #else /* CONFIG_X86_32 */ | ||
11 | |||
12 | extern cpumask_t cpu_callin_map; | ||
13 | |||
14 | #define cpu_callin_mask ((struct cpumask *)&cpu_callin_map) | ||
15 | |||
16 | #endif /* CONFIG_X86_32 */ | ||
17 | |||
18 | #endif /* __ASSEMBLY__ */ | ||
19 | #endif /* _ASM_X86_CPUMASK_H */ | ||
diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h index 1963e27673c9..c35aa5c0dd11 100644 --- a/arch/x86/include/asm/smp.h +++ b/arch/x86/include/asm/smp.h | |||
@@ -20,19 +20,16 @@ | |||
20 | 20 | ||
21 | #ifdef CONFIG_X86_64 | 21 | #ifdef CONFIG_X86_64 |
22 | 22 | ||
23 | extern cpumask_var_t cpu_callin_mask; | ||
24 | extern cpumask_var_t cpu_callout_mask; | 23 | extern cpumask_var_t cpu_callout_mask; |
25 | extern cpumask_var_t cpu_initialized_mask; | 24 | extern cpumask_var_t cpu_initialized_mask; |
26 | extern cpumask_var_t cpu_sibling_setup_mask; | 25 | extern cpumask_var_t cpu_sibling_setup_mask; |
27 | 26 | ||
28 | #else /* CONFIG_X86_32 */ | 27 | #else /* CONFIG_X86_32 */ |
29 | 28 | ||
30 | extern cpumask_t cpu_callin_map; | ||
31 | extern cpumask_t cpu_callout_map; | 29 | extern cpumask_t cpu_callout_map; |
32 | extern cpumask_t cpu_initialized; | 30 | extern cpumask_t cpu_initialized; |
33 | extern cpumask_t cpu_sibling_setup_map; | 31 | extern cpumask_t cpu_sibling_setup_map; |
34 | 32 | ||
35 | #define cpu_callin_mask ((struct cpumask *)&cpu_callin_map) | ||
36 | #define cpu_callout_mask ((struct cpumask *)&cpu_callout_map) | 33 | #define cpu_callout_mask ((struct cpumask *)&cpu_callout_map) |
37 | #define cpu_initialized_mask ((struct cpumask *)&cpu_initialized) | 34 | #define cpu_initialized_mask ((struct cpumask *)&cpu_initialized) |
38 | #define cpu_sibling_setup_mask ((struct cpumask *)&cpu_sibling_setup_map) | 35 | #define cpu_sibling_setup_mask ((struct cpumask *)&cpu_sibling_setup_map) |
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index 14e543b6fd4f..f00258462444 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <asm/numa.h> | 22 | #include <asm/numa.h> |
23 | #include <asm/smp.h> | 23 | #include <asm/smp.h> |
24 | #include <asm/cpu.h> | 24 | #include <asm/cpu.h> |
25 | #include <asm/cpumask.h> | ||
25 | #ifdef CONFIG_X86_LOCAL_APIC | 26 | #ifdef CONFIG_X86_LOCAL_APIC |
26 | #include <asm/mpspec.h> | 27 | #include <asm/mpspec.h> |
27 | #include <asm/apic.h> | 28 | #include <asm/apic.h> |
diff --git a/arch/x86/kernel/setup_percpu.c b/arch/x86/kernel/setup_percpu.c index 55c46074eba0..bf63de72b643 100644 --- a/arch/x86/kernel/setup_percpu.c +++ b/arch/x86/kernel/setup_percpu.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <asm/mpspec.h> | 13 | #include <asm/mpspec.h> |
14 | #include <asm/apicdef.h> | 14 | #include <asm/apicdef.h> |
15 | #include <asm/highmem.h> | 15 | #include <asm/highmem.h> |
16 | #include <asm/cpumask.h> | ||
16 | 17 | ||
17 | #ifdef CONFIG_X86_LOCAL_APIC | 18 | #ifdef CONFIG_X86_LOCAL_APIC |
18 | unsigned int num_processors; | 19 | unsigned int num_processors; |
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index 6c2b8444b830..84ac1cf46d87 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
@@ -55,6 +55,7 @@ | |||
55 | #include <asm/idle.h> | 55 | #include <asm/idle.h> |
56 | #include <asm/trampoline.h> | 56 | #include <asm/trampoline.h> |
57 | #include <asm/cpu.h> | 57 | #include <asm/cpu.h> |
58 | #include <asm/cpumask.h> | ||
58 | #include <asm/numa.h> | 59 | #include <asm/numa.h> |
59 | #include <asm/pgtable.h> | 60 | #include <asm/pgtable.h> |
60 | #include <asm/tlbflush.h> | 61 | #include <asm/tlbflush.h> |