Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.14 15 lines 408 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _ASM_X86_CPUMASK_H 3#define _ASM_X86_CPUMASK_H 4#ifndef __ASSEMBLY__ 5#include <linux/cpumask.h> 6 7extern cpumask_var_t cpu_callin_mask; 8extern cpumask_var_t cpu_callout_mask; 9extern cpumask_var_t cpu_initialized_mask; 10extern cpumask_var_t cpu_sibling_setup_mask; 11 12extern void setup_cpu_local_masks(void); 13 14#endif /* __ASSEMBLY__ */ 15#endif /* _ASM_X86_CPUMASK_H */