mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
20 lines
373 B
C
20 lines
373 B
C
|
#ifndef _ASM_X86_CPUMASK_H
|
||
|
#define _ASM_X86_CPUMASK_H
|
||
|
#ifndef __ASSEMBLY__
|
||
|
#include <linux/cpumask.h>
|
||
|
|
||
|
#ifdef CONFIG_X86_64
|
||
|
|
||
|
extern cpumask_var_t cpu_callin_mask;
|
||
|
|
||
|
#else /* CONFIG_X86_32 */
|
||
|
|
||
|
extern cpumask_t cpu_callin_map;
|
||
|
|
||
|
#define cpu_callin_mask ((struct cpumask *)&cpu_callin_map)
|
||
|
|
||
|
#endif /* CONFIG_X86_32 */
|
||
|
|
||
|
#endif /* __ASSEMBLY__ */
|
||
|
#endif /* _ASM_X86_CPUMASK_H */
|