summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorJaswinder Singh Rajput <jaswinderrajput@gmail.com>2009-01-10 07:50:24 +0100
committerIngo Molnar <mingo@elte.hu>2009-01-10 23:57:20 +0100
commitfb8fd077fbf0de6662acfd240e8e6b25cf3202ca (patch)
tree55bf6c71cd4137863bcef75ede91b274aa015872 /arch
parentx86: smp.h move cpu_callin_mask and cpu_callin_map declartion to cpumask.h (diff)
downloadlinux-fb8fd077fbf0de6662acfd240e8e6b25cf3202ca.tar.xz
linux-fb8fd077fbf0de6662acfd240e8e6b25cf3202ca.zip
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>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/include/asm/cpumask.h3
-rw-r--r--arch/x86/include/asm/smp.h4
-rw-r--r--arch/x86/kernel/smpboot.c1
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 @@
#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 */
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 @@
#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)
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 @@
#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>