aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/cpumask.h
diff options
context:
space:
mode:
authorJaswinder Singh Rajput <jaswinderrajput@gmail.com>2009-01-10 01:47:37 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-10 17:57:09 -0500
commit068790334cececc3d2d945617ccc585477da2e38 (patch)
tree5a9c55238ef9ae4114d99f424320080cc3842384 /arch/x86/include/asm/cpumask.h
parent1de8cd3cb9f61e854e743c7210df43db517d4832 (diff)
x86: smp.h move cpu_callin_mask and cpu_callin_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/x86/include/asm/cpumask.h')
-rw-r--r--arch/x86/include/asm/cpumask.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/x86/include/asm/cpumask.h b/arch/x86/include/asm/cpumask.h
new file mode 100644
index 000000000000..308dddd56329
--- /dev/null
+++ b/arch/x86/include/asm/cpumask.h
@@ -0,0 +1,19 @@
1#ifndef _ASM_X86_CPUMASK_H
2#define _ASM_X86_CPUMASK_H
3#ifndef __ASSEMBLY__
4#include <linux/cpumask.h>
5
6#ifdef CONFIG_X86_64
7
8extern cpumask_var_t cpu_callin_mask;
9
10#else /* CONFIG_X86_32 */
11
12extern cpumask_t cpu_callin_map;
13
14#define cpu_callin_mask ((struct cpumask *)&cpu_callin_map)
15
16#endif /* CONFIG_X86_32 */
17
18#endif /* __ASSEMBLY__ */
19#endif /* _ASM_X86_CPUMASK_H */