aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/cpu.c
diff options
context:
space:
mode:
authorMike Travis <travis@sgi.com>2008-07-24 21:21:29 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-26 10:40:32 -0400
commitb8d317d10cca76cabe6b03ebfeb23cc99118b731 (patch)
treea997d21960099095822ffbfe8be4d3f6176f33a9 /kernel/cpu.c
parent024e8ac04453b3525448c31ef39848cf675ba6db (diff)
cpumask: make cpumask_of_cpu_map generic
If an arch doesn't define cpumask_of_cpu_map, create a generic statically-initialized one for them. This allows removal of the buggy cpumask_of_cpu() macro (&cpumask_of_cpu() gives address of out-of-scope var). An arch with NR_CPUS of 4096 probably wants to allocate this itself based on the actual number of CPUs, since otherwise they're using 2MB of rodata (1024 cpus means 128k). That's what CONFIG_HAVE_CPUMASK_OF_CPU_MAP is for (only x86/64 does so at the moment). In future as we support more CPUs, we'll need to resort to a get_cpu_map()/put_cpu_map() allocation scheme. Signed-off-by: Mike Travis <travis@sgi.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Jack Steiner <steiner@sgi.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/cpu.c')
-rw-r--r--kernel/cpu.c109
1 files changed, 109 insertions, 0 deletions
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 10ba5f1004a5..fe31ff3d3809 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -461,3 +461,112 @@ out:
461#endif /* CONFIG_PM_SLEEP_SMP */ 461#endif /* CONFIG_PM_SLEEP_SMP */
462 462
463#endif /* CONFIG_SMP */ 463#endif /* CONFIG_SMP */
464
465#ifndef CONFIG_HAVE_CPUMASK_OF_CPU_MAP
466/* 64 bits of zeros, for initializers. */
467#if BITS_PER_LONG == 32
468#define Z64 0, 0
469#else
470#define Z64 0
471#endif
472
473/* Initializer macros. */
474#define CMI0(n) { .bits = { 1UL << (n) } }
475#define CMI(n, ...) { .bits = { __VA_ARGS__, 1UL << ((n) % BITS_PER_LONG) } }
476
477#define CMI8(n, ...) \
478 CMI((n), __VA_ARGS__), CMI((n)+1, __VA_ARGS__), \
479 CMI((n)+2, __VA_ARGS__), CMI((n)+3, __VA_ARGS__), \
480 CMI((n)+4, __VA_ARGS__), CMI((n)+5, __VA_ARGS__), \
481 CMI((n)+6, __VA_ARGS__), CMI((n)+7, __VA_ARGS__)
482
483#if BITS_PER_LONG == 32
484#define CMI64(n, ...) \
485 CMI8((n), __VA_ARGS__), CMI8((n)+8, __VA_ARGS__), \
486 CMI8((n)+16, __VA_ARGS__), CMI8((n)+24, __VA_ARGS__), \
487 CMI8((n)+32, 0, __VA_ARGS__), CMI8((n)+40, 0, __VA_ARGS__), \
488 CMI8((n)+48, 0, __VA_ARGS__), CMI8((n)+56, 0, __VA_ARGS__)
489#else
490#define CMI64(n, ...) \
491 CMI8((n), __VA_ARGS__), CMI8((n)+8, __VA_ARGS__), \
492 CMI8((n)+16, __VA_ARGS__), CMI8((n)+24, __VA_ARGS__), \
493 CMI8((n)+32, __VA_ARGS__), CMI8((n)+40, __VA_ARGS__), \
494 CMI8((n)+48, __VA_ARGS__), CMI8((n)+56, __VA_ARGS__)
495#endif
496
497#define CMI256(n, ...) \
498 CMI64((n), __VA_ARGS__), CMI64((n)+64, Z64, __VA_ARGS__), \
499 CMI64((n)+128, Z64, Z64, __VA_ARGS__), \
500 CMI64((n)+192, Z64, Z64, Z64, __VA_ARGS__)
501#define Z256 Z64, Z64, Z64, Z64
502
503#define CMI1024(n, ...) \
504 CMI256((n), __VA_ARGS__), \
505 CMI256((n)+256, Z256, __VA_ARGS__), \
506 CMI256((n)+512, Z256, Z256, __VA_ARGS__), \
507 CMI256((n)+768, Z256, Z256, Z256, __VA_ARGS__)
508#define Z1024 Z256, Z256, Z256, Z256
509
510/* We want this statically initialized, just to be safe. We try not
511 * to waste too much space, either. */
512static const cpumask_t cpumask_map[] = {
513 CMI0(0), CMI0(1), CMI0(2), CMI0(3),
514#if NR_CPUS > 4
515 CMI0(4), CMI0(5), CMI0(6), CMI0(7),
516#endif
517#if NR_CPUS > 8
518 CMI0(8), CMI0(9), CMI0(10), CMI0(11),
519 CMI0(12), CMI0(13), CMI0(14), CMI0(15),
520#endif
521#if NR_CPUS > 16
522 CMI0(16), CMI0(17), CMI0(18), CMI0(19),
523 CMI0(20), CMI0(21), CMI0(22), CMI0(23),
524 CMI0(24), CMI0(25), CMI0(26), CMI0(27),
525 CMI0(28), CMI0(29), CMI0(30), CMI0(31),
526#endif
527#if NR_CPUS > 32
528#if BITS_PER_LONG == 32
529 CMI(32, 0), CMI(33, 0), CMI(34, 0), CMI(35, 0),
530 CMI(36, 0), CMI(37, 0), CMI(38, 0), CMI(39, 0),
531 CMI(40, 0), CMI(41, 0), CMI(42, 0), CMI(43, 0),
532 CMI(44, 0), CMI(45, 0), CMI(46, 0), CMI(47, 0),
533 CMI(48, 0), CMI(49, 0), CMI(50, 0), CMI(51, 0),
534 CMI(52, 0), CMI(53, 0), CMI(54, 0), CMI(55, 0),
535 CMI(56, 0), CMI(57, 0), CMI(58, 0), CMI(59, 0),
536 CMI(60, 0), CMI(61, 0), CMI(62, 0), CMI(63, 0),
537#else
538 CMI0(32), CMI0(33), CMI0(34), CMI0(35),
539 CMI0(36), CMI0(37), CMI0(38), CMI0(39),
540 CMI0(40), CMI0(41), CMI0(42), CMI0(43),
541 CMI0(44), CMI0(45), CMI0(46), CMI0(47),
542 CMI0(48), CMI0(49), CMI0(50), CMI0(51),
543 CMI0(52), CMI0(53), CMI0(54), CMI0(55),
544 CMI0(56), CMI0(57), CMI0(58), CMI0(59),
545 CMI0(60), CMI0(61), CMI0(62), CMI0(63),
546#endif /* BITS_PER_LONG == 64 */
547#endif
548#if NR_CPUS > 64
549 CMI64(64, Z64),
550#endif
551#if NR_CPUS > 128
552 CMI64(128, Z64, Z64), CMI64(192, Z64, Z64, Z64),
553#endif
554#if NR_CPUS > 256
555 CMI256(256, Z256),
556#endif
557#if NR_CPUS > 512
558 CMI256(512, Z256, Z256), CMI256(768, Z256, Z256, Z256),
559#endif
560#if NR_CPUS > 1024
561 CMI1024(1024, Z1024),
562#endif
563#if NR_CPUS > 2048
564 CMI1024(2048, Z1024, Z1024), CMI1024(3072, Z1024, Z1024, Z1024),
565#endif
566#if NR_CPUS > 4096
567#error NR_CPUS too big. Fix initializers or set CONFIG_HAVE_CPUMASK_OF_CPU_MAP
568#endif
569};
570
571const cpumask_t *cpumask_of_cpu_map = cpumask_map;
572#endif /* !CONFIG_HAVE_CPUMASK_OF_CPU_MAP */