diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-10 01:50:24 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-10 17:57:20 -0500 |
commit | fb8fd077fbf0de6662acfd240e8e6b25cf3202ca (patch) | |
tree | 55bf6c71cd4137863bcef75ede91b274aa015872 | |
parent | 068790334cececc3d2d945617ccc585477da2e38 (diff) |
x86: smp.h move cpu_callout_mask and cpu_callout_map declartion to cpumask.h
Impact: cleanup
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/include/asm/cpumask.h | 3 | ||||
-rw-r--r-- | arch/x86/include/asm/smp.h | 4 | ||||
-rw-r--r-- | arch/x86/kernel/smpboot.c | 1 |
3 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/include/asm/cpumask.h b/arch/x86/include/asm/cpumask.h index 308dddd56329..9933fcad3c82 100644 --- a/arch/x86/include/asm/cpumask.h +++ b/arch/x86/include/asm/cpumask.h | |||
@@ -6,12 +6,15 @@ | |||
6 | #ifdef CONFIG_X86_64 | 6 | #ifdef CONFIG_X86_64 |
7 | 7 | ||
8 | extern cpumask_var_t cpu_callin_mask; | 8 | extern cpumask_var_t cpu_callin_mask; |
9 | extern cpumask_var_t cpu_callout_mask; | ||
9 | 10 | ||
10 | #else /* CONFIG_X86_32 */ | 11 | #else /* CONFIG_X86_32 */ |
11 | 12 | ||
12 | extern cpumask_t cpu_callin_map; | 13 | extern cpumask_t cpu_callin_map; |
14 | extern cpumask_t cpu_callout_map; | ||
13 | 15 | ||
14 | #define cpu_callin_mask ((struct cpumask *)&cpu_callin_map) | 16 | #define cpu_callin_mask ((struct cpumask *)&cpu_callin_map) |
17 | #define cpu_callout_mask ((struct cpumask *)&cpu_callout_map) | ||
15 | 18 | ||
16 | #endif /* CONFIG_X86_32 */ | 19 | #endif /* CONFIG_X86_32 */ |
17 | 20 | ||
diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h index c35aa5c0dd11..a3afec5cad0b 100644 --- a/arch/x86/include/asm/smp.h +++ b/arch/x86/include/asm/smp.h | |||
@@ -17,20 +17,18 @@ | |||
17 | #endif | 17 | #endif |
18 | #include <asm/pda.h> | 18 | #include <asm/pda.h> |
19 | #include <asm/thread_info.h> | 19 | #include <asm/thread_info.h> |
20 | #include <asm/cpumask.h> | ||
20 | 21 | ||
21 | #ifdef CONFIG_X86_64 | 22 | #ifdef CONFIG_X86_64 |
22 | 23 | ||
23 | extern cpumask_var_t cpu_callout_mask; | ||
24 | extern cpumask_var_t cpu_initialized_mask; | 24 | extern cpumask_var_t cpu_initialized_mask; |
25 | extern cpumask_var_t cpu_sibling_setup_mask; | 25 | extern cpumask_var_t cpu_sibling_setup_mask; |
26 | 26 | ||
27 | #else /* CONFIG_X86_32 */ | 27 | #else /* CONFIG_X86_32 */ |
28 | 28 | ||
29 | extern cpumask_t cpu_callout_map; | ||
30 | extern cpumask_t cpu_initialized; | 29 | extern cpumask_t cpu_initialized; |
31 | extern cpumask_t cpu_sibling_setup_map; | 30 | extern cpumask_t cpu_sibling_setup_map; |
32 | 31 | ||
33 | #define cpu_callout_mask ((struct cpumask *)&cpu_callout_map) | ||
34 | #define cpu_initialized_mask ((struct cpumask *)&cpu_initialized) | 32 | #define cpu_initialized_mask ((struct cpumask *)&cpu_initialized) |
35 | #define cpu_sibling_setup_mask ((struct cpumask *)&cpu_sibling_setup_map) | 33 | #define cpu_sibling_setup_mask ((struct cpumask *)&cpu_sibling_setup_map) |
36 | 34 | ||
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index 84ac1cf46d87..6c2b8444b830 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
@@ -55,7 +55,6 @@ | |||
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> | ||
59 | #include <asm/numa.h> | 58 | #include <asm/numa.h> |
60 | #include <asm/pgtable.h> | 59 | #include <asm/pgtable.h> |
61 | #include <asm/tlbflush.h> | 60 | #include <asm/tlbflush.h> |