summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/cpumask.h
diff options
context:
space:
mode:
authorJaswinder Singh Rajput2009-01-10 08:18:22 +0100
committerIngo Molnar2009-01-10 23:57:31 +0100
commit493f6ca54e1ea59732dd334e35c5fe2d8e440b06 (patch)
tree0849832b56bad245ff2c93ef2415397156077648 /arch/x86/include/asm/cpumask.h
parentx86: smp.h move cpu_callout_mask and cpu_callout_map declartion to cpumask.h (diff)
downloadkernel-qcow2-linux-493f6ca54e1ea59732dd334e35c5fe2d8e440b06.tar.gz
kernel-qcow2-linux-493f6ca54e1ea59732dd334e35c5fe2d8e440b06.tar.xz
kernel-qcow2-linux-493f6ca54e1ea59732dd334e35c5fe2d8e440b06.zip
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/cpumask.h')
-rw-r--r--arch/x86/include/asm/cpumask.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/include/asm/cpumask.h b/arch/x86/include/asm/cpumask.h
index 9933fcad3c82..d4cfd120b84d 100644
--- a/arch/x86/include/asm/cpumask.h
+++ b/arch/x86/include/asm/cpumask.h
@@ -7,14 +7,17 @@
extern cpumask_var_t cpu_callin_mask;
extern cpumask_var_t cpu_callout_mask;
+extern cpumask_var_t cpu_initialized_mask;
#else /* CONFIG_X86_32 */
extern cpumask_t cpu_callin_map;
extern cpumask_t cpu_callout_map;
+extern cpumask_t cpu_initialized;
#define cpu_callin_mask ((struct cpumask *)&cpu_callin_map)
#define cpu_callout_mask ((struct cpumask *)&cpu_callout_map)
+#define cpu_initialized_mask ((struct cpumask *)&cpu_initialized)
#endif /* CONFIG_X86_32 */