x86: smp.h move cpu_callout_mask and cpu_callout_map declartion to cpumask.h
authorJaswinder Singh Rajput <jaswinderrajput@gmail.com>
Sat, 10 Jan 2009 06:50:24 +0000 (12:20 +0530)
committerIngo Molnar <mingo@elte.hu>
Sat, 10 Jan 2009 22:57:20 +0000 (23:57 +0100)
Impact: cleanup

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/include/asm/cpumask.h
arch/x86/include/asm/smp.h
arch/x86/kernel/smpboot.c

index 308dddd563290f8e2740011972150685717bb753..9933fcad3c822646b00272b7543a95b8239369c3 100644 (file)
@@ -6,12 +6,15 @@
 #ifdef CONFIG_X86_64
 
 extern cpumask_var_t cpu_callin_mask;
+extern cpumask_var_t cpu_callout_mask;
 
 #else /* CONFIG_X86_32 */
 
 extern cpumask_t cpu_callin_map;
+extern cpumask_t cpu_callout_map;
 
 #define cpu_callin_mask                ((struct cpumask *)&cpu_callin_map)
+#define cpu_callout_mask       ((struct cpumask *)&cpu_callout_map)
 
 #endif /* CONFIG_X86_32 */
 
index c35aa5c0dd11f20d7d8b3790eb1267360c03bf55..a3afec5cad0be9576ff2bd1a4a9fcb8ede58cbb7 100644 (file)
 #endif
 #include <asm/pda.h>
 #include <asm/thread_info.h>
+#include <asm/cpumask.h>
 
 #ifdef CONFIG_X86_64
 
-extern cpumask_var_t cpu_callout_mask;
 extern cpumask_var_t cpu_initialized_mask;
 extern cpumask_var_t cpu_sibling_setup_mask;
 
 #else /* CONFIG_X86_32 */
 
-extern cpumask_t cpu_callout_map;
 extern cpumask_t cpu_initialized;
 extern cpumask_t cpu_sibling_setup_map;
 
-#define cpu_callout_mask       ((struct cpumask *)&cpu_callout_map)
 #define cpu_initialized_mask   ((struct cpumask *)&cpu_initialized)
 #define cpu_sibling_setup_mask ((struct cpumask *)&cpu_sibling_setup_map)
 
index 84ac1cf46d87be9b7e822ede6908bc9d23cc2adb..6c2b8444b8307b24d0a2e6966eacdf3869077b82 100644 (file)
@@ -55,7 +55,6 @@
 #include <asm/idle.h>
 #include <asm/trampoline.h>
 #include <asm/cpu.h>
-#include <asm/cpumask.h>
 #include <asm/numa.h>
 #include <asm/pgtable.h>
 #include <asm/tlbflush.h>