blob: 9933fcad3c822646b00272b7543a95b8239369c3 [file] [log] [blame]
Jaswinder Singh Rajput06879032009-01-10 12:17:37 +05301#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;
Jaswinder Singh Rajputfb8fd072009-01-10 12:20:24 +05309extern cpumask_var_t cpu_callout_mask;
Jaswinder Singh Rajput06879032009-01-10 12:17:37 +053010
11#else /* CONFIG_X86_32 */
12
13extern cpumask_t cpu_callin_map;
Jaswinder Singh Rajputfb8fd072009-01-10 12:20:24 +053014extern cpumask_t cpu_callout_map;
Jaswinder Singh Rajput06879032009-01-10 12:17:37 +053015
16#define cpu_callin_mask ((struct cpumask *)&cpu_callin_map)
Jaswinder Singh Rajputfb8fd072009-01-10 12:20:24 +053017#define cpu_callout_mask ((struct cpumask *)&cpu_callout_map)
Jaswinder Singh Rajput06879032009-01-10 12:17:37 +053018
19#endif /* CONFIG_X86_32 */
20
21#endif /* __ASSEMBLY__ */
22#endif /* _ASM_X86_CPUMASK_H */