aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/smp.h
diff options
context:
space:
mode:
authorJaswinder Singh Rajput <jaswinderrajput@gmail.com>2009-01-10 02:18:22 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-10 17:57:31 -0500
commit493f6ca54e1ea59732dd334e35c5fe2d8e440b06 (patch)
tree0849832b56bad245ff2c93ef2415397156077648 /arch/x86/include/asm/smp.h
parentfb8fd077fbf0de6662acfd240e8e6b25cf3202ca (diff)
x86: smp.h move cpu_initialized_mask and cpu_initialized 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/x86/include/asm/smp.h')
-rw-r--r--arch/x86/include/asm/smp.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h
index a3afec5cad0b..7d2a80319e82 100644
--- a/arch/x86/include/asm/smp.h
+++ b/arch/x86/include/asm/smp.h
@@ -21,15 +21,12 @@
21 21
22#ifdef CONFIG_X86_64 22#ifdef CONFIG_X86_64
23 23
24extern cpumask_var_t cpu_initialized_mask;
25extern cpumask_var_t cpu_sibling_setup_mask; 24extern cpumask_var_t cpu_sibling_setup_mask;
26 25
27#else /* CONFIG_X86_32 */ 26#else /* CONFIG_X86_32 */
28 27
29extern cpumask_t cpu_initialized;
30extern cpumask_t cpu_sibling_setup_map; 28extern cpumask_t cpu_sibling_setup_map;
31 29
32#define cpu_initialized_mask ((struct cpumask *)&cpu_initialized)
33#define cpu_sibling_setup_mask ((struct cpumask *)&cpu_sibling_setup_map) 30#define cpu_sibling_setup_mask ((struct cpumask *)&cpu_sibling_setup_map)
34 31
35#endif /* CONFIG_X86_32 */ 32#endif /* CONFIG_X86_32 */