diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-02-18 11:54:22 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-02-18 11:54:22 -0800 |
| commit | 59e4721544a9650cb74f66857e7b2ab49e983144 (patch) | |
| tree | cbb850869cfc88a651f25a0ba77cae90f7b9a1d2 | |
| parent | Merge tag 'for-linus-20180217' of git://git.kernel.dk/linux-block (diff) | |
| parent | cpumask: Make for_each_cpu_wrap() available on UP as well (diff) | |
| download | linux-59e4721544a9650cb74f66857e7b2ab49e983144.tar.gz linux-59e4721544a9650cb74f66857e7b2ab49e983144.zip | |
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
| -rw-r--r-- | include/linux/cpumask.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index d4a2a7dcd72d..bf53d893ad02 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h @@ -170,6 +170,8 @@ static inline unsigned int cpumask_local_spread(unsigned int i, int node) for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) #define for_each_cpu_not(cpu, mask) \ for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) +#define for_each_cpu_wrap(cpu, mask, start) \ + for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask, (void)(start)) #define for_each_cpu_and(cpu, mask, and) \ for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask, (void)and) #else |
