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.

Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull core fix from Thomas Gleixner:
"A small fix which adds the missing for_each_cpu_wrap() stub for the UP
case to avoid build failures"

* 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
cpumask: Make for_each_cpu_wrap() available on UP as well

+2
+2
include/linux/cpumask.h
··· 170 170 for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) 171 171 #define for_each_cpu_not(cpu, mask) \ 172 172 for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) 173 + #define for_each_cpu_wrap(cpu, mask, start) \ 174 + for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask, (void)(start)) 173 175 #define for_each_cpu_and(cpu, mask, and) \ 174 176 for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask, (void)and) 175 177 #else