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

Configure Feed

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

at v4.5 12 lines 148 B view raw
1#ifdef CONFIG_RANDOMIZE_BASE 2 3#include "../cpuflags.c" 4 5bool has_cpuflag(int flag) 6{ 7 get_cpuflags(); 8 9 return test_bit(flag, cpu.flags); 10} 11 12#endif