diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2016-01-20 18:00:25 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-01-20 20:09:18 -0500 |
commit | 5aec01b834fd6f8ca49d1aeede665b950d0c148e (patch) | |
tree | 045503272e743839d1e5fe08ba332c5e28d4547e | |
parent | 848e239155a17c5373e52278ff9a13b29867ea8a (diff) |
kernel/cpu.c: eliminate cpu_*_mask
Replace the variables cpu_possible_mask, cpu_online_mask, cpu_present_mask
and cpu_active_mask with macros expanding to expressions of the same type
and value, eliminating some indirection.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/cpumask.h | 8 | ||||
-rw-r--r-- | kernel/cpu.c | 8 |
2 files changed, 4 insertions, 12 deletions
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index d4545a1852f2..52ab539aefce 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
@@ -85,14 +85,14 @@ extern int nr_cpu_ids; | |||
85 | * only one CPU. | 85 | * only one CPU. |
86 | */ | 86 | */ |
87 | 87 | ||
88 | extern const struct cpumask *const cpu_possible_mask; | ||
89 | extern const struct cpumask *const cpu_online_mask; | ||
90 | extern const struct cpumask *const cpu_present_mask; | ||
91 | extern const struct cpumask *const cpu_active_mask; | ||
92 | extern struct cpumask __cpu_possible_mask; | 88 | extern struct cpumask __cpu_possible_mask; |
93 | extern struct cpumask __cpu_online_mask; | 89 | extern struct cpumask __cpu_online_mask; |
94 | extern struct cpumask __cpu_present_mask; | 90 | extern struct cpumask __cpu_present_mask; |
95 | extern struct cpumask __cpu_active_mask; | 91 | extern struct cpumask __cpu_active_mask; |
92 | #define cpu_possible_mask ((const struct cpumask *)&__cpu_possible_mask) | ||
93 | #define cpu_online_mask ((const struct cpumask *)&__cpu_online_mask) | ||
94 | #define cpu_present_mask ((const struct cpumask *)&__cpu_present_mask) | ||
95 | #define cpu_active_mask ((const struct cpumask *)&__cpu_active_mask) | ||
96 | 96 | ||
97 | #if NR_CPUS > 1 | 97 | #if NR_CPUS > 1 |
98 | #define num_online_cpus() cpumask_weight(cpu_online_mask) | 98 | #define num_online_cpus() cpumask_weight(cpu_online_mask) |
diff --git a/kernel/cpu.c b/kernel/cpu.c index 35d1d45be8e9..8734fc74fcbc 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c | |||
@@ -765,23 +765,15 @@ struct cpumask __cpu_possible_mask __read_mostly | |||
765 | struct cpumask __cpu_possible_mask __read_mostly; | 765 | struct cpumask __cpu_possible_mask __read_mostly; |
766 | #endif | 766 | #endif |
767 | EXPORT_SYMBOL(__cpu_possible_mask); | 767 | EXPORT_SYMBOL(__cpu_possible_mask); |
768 | const struct cpumask *const cpu_possible_mask = &__cpu_possible_mask; | ||
769 | EXPORT_SYMBOL(cpu_possible_mask); | ||
770 | 768 | ||
771 | struct cpumask __cpu_online_mask __read_mostly; | 769 | struct cpumask __cpu_online_mask __read_mostly; |
772 | EXPORT_SYMBOL(__cpu_online_mask); | 770 | EXPORT_SYMBOL(__cpu_online_mask); |
773 | const struct cpumask *const cpu_online_mask = &__cpu_online_mask; | ||
774 | EXPORT_SYMBOL(cpu_online_mask); | ||
775 | 771 | ||
776 | struct cpumask __cpu_present_mask __read_mostly; | 772 | struct cpumask __cpu_present_mask __read_mostly; |
777 | EXPORT_SYMBOL(__cpu_present_mask); | 773 | EXPORT_SYMBOL(__cpu_present_mask); |
778 | const struct cpumask *const cpu_present_mask = &__cpu_present_mask; | ||
779 | EXPORT_SYMBOL(cpu_present_mask); | ||
780 | 774 | ||
781 | struct cpumask __cpu_active_mask __read_mostly; | 775 | struct cpumask __cpu_active_mask __read_mostly; |
782 | EXPORT_SYMBOL(__cpu_active_mask); | 776 | EXPORT_SYMBOL(__cpu_active_mask); |
783 | const struct cpumask *const cpu_active_mask = &__cpu_active_mask; | ||
784 | EXPORT_SYMBOL(cpu_active_mask); | ||
785 | 777 | ||
786 | void set_cpu_possible(unsigned int cpu, bool possible) | 778 | void set_cpu_possible(unsigned int cpu, bool possible) |
787 | { | 779 | { |