cpumask: introduce new APIs

In linux-next there is a commit ("x86: Add performance variants of cpumask
operators") which, as part of the 4096 cpu support work adds some new APIs
for dealing with cpu masks. Add trivial versions of these now so that
subsystems can update in a timely manner and avoid conflicts in linux-next
and the next merge window.

Cc: Mike Travis <travis@sgi.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Stephen Rothwell and committed by Linus Torvalds acb7669c 603ded16

+4
+4
include/linux/cpumask.h
··· 353 353 for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) 354 354 #endif /* NR_CPUS */ 355 355 356 + #define next_cpu_nr(n, src) next_cpu(n, src) 357 + #define cpus_weight_nr(cpumask) cpus_weight(cpumask) 358 + #define for_each_cpu_mask_nr(cpu, mask) for_each_cpu_mask(cpu, mask) 359 + 356 360 /* 357 361 * The following particular system cpumasks and operations manage 358 362 * possible, present and online cpus. Each of them is a fixed size