mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
3f76a183de
Impact: cleanup Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
15 lines
369 B
C
15 lines
369 B
C
#ifndef _ASM_X86_CPUMASK_H
|
|
#define _ASM_X86_CPUMASK_H
|
|
#ifndef __ASSEMBLY__
|
|
#include <linux/cpumask.h>
|
|
|
|
extern cpumask_var_t cpu_callin_mask;
|
|
extern cpumask_var_t cpu_callout_mask;
|
|
extern cpumask_var_t cpu_initialized_mask;
|
|
extern cpumask_var_t cpu_sibling_setup_mask;
|
|
|
|
extern void setup_cpu_local_masks(void);
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
#endif /* _ASM_X86_CPUMASK_H */
|