You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
369 B
14 lines
369 B
#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 */
|
|
|