diff options
| -rw-r--r-- | drivers/base/cpu.c | 44 | ||||
| -rw-r--r-- | include/linux/smp.h | 3 |
2 files changed, 47 insertions, 0 deletions
diff --git a/drivers/base/cpu.c b/drivers/base/cpu.c index 4259072f5bd0..2aef96f20b30 100644 --- a/drivers/base/cpu.c +++ b/drivers/base/cpu.c | |||
| @@ -128,10 +128,54 @@ print_cpus_func(online); | |||
| 128 | print_cpus_func(possible); | 128 | print_cpus_func(possible); |
| 129 | print_cpus_func(present); | 129 | print_cpus_func(present); |
| 130 | 130 | ||
| 131 | /* | ||
| 132 | * Print values for NR_CPUS and offlined cpus | ||
| 133 | */ | ||
| 134 | static ssize_t print_cpus_kernel_max(struct sysdev_class *class, char *buf) | ||
| 135 | { | ||
| 136 | int n = snprintf(buf, PAGE_SIZE-2, "%d\n", CONFIG_NR_CPUS - 1); | ||
| 137 | return n; | ||
| 138 | } | ||
| 139 | static SYSDEV_CLASS_ATTR(kernel_max, 0444, print_cpus_kernel_max, NULL); | ||
| 140 | |||
| 141 | /* arch-optional setting to enable display of offline cpus >= nr_cpu_ids */ | ||
| 142 | unsigned int total_cpus; | ||
| 143 | |||
| 144 | static ssize_t print_cpus_offline(struct sysdev_class *class, char *buf) | ||
| 145 | { | ||
| 146 | int n = 0, len = PAGE_SIZE-2; | ||
| 147 | cpumask_var_t offline; | ||
| 148 | |||
| 149 | /* display offline cpus < nr_cpu_ids */ | ||
| 150 | if (!alloc_cpumask_var(&offline, GFP_KERNEL)) | ||
| 151 | return -ENOMEM; | ||
| 152 | cpumask_complement(offline, cpu_online_mask); | ||
| 153 | n = cpulist_scnprintf(buf, len, offline); | ||
| 154 | free_cpumask_var(offline); | ||
| 155 | |||
| 156 | /* display offline cpus >= nr_cpu_ids */ | ||
| 157 | if (total_cpus && nr_cpu_ids < total_cpus) { | ||
| 158 | if (n && n < len) | ||
| 159 | buf[n++] = ','; | ||
| 160 | |||
| 161 | if (nr_cpu_ids == total_cpus-1) | ||
| 162 | n += snprintf(&buf[n], len - n, "%d", nr_cpu_ids); | ||
| 163 | else | ||
| 164 | n += snprintf(&buf[n], len - n, "%d-%d", | ||
| 165 | nr_cpu_ids, total_cpus-1); | ||
| 166 | } | ||
| 167 | |||
| 168 | n += snprintf(&buf[n], len - n, "\n"); | ||
| 169 | return n; | ||
| 170 | } | ||
| 171 | static SYSDEV_CLASS_ATTR(offline, 0444, print_cpus_offline, NULL); | ||
| 172 | |||
| 131 | static struct sysdev_class_attribute *cpu_state_attr[] = { | 173 | static struct sysdev_class_attribute *cpu_state_attr[] = { |
| 132 | &attr_online_map, | 174 | &attr_online_map, |
| 133 | &attr_possible_map, | 175 | &attr_possible_map, |
| 134 | &attr_present_map, | 176 | &attr_present_map, |
| 177 | &attr_kernel_max, | ||
| 178 | &attr_offline, | ||
| 135 | }; | 179 | }; |
| 136 | 180 | ||
| 137 | static int cpu_states_init(void) | 181 | static int cpu_states_init(void) |
diff --git a/include/linux/smp.h b/include/linux/smp.h index 3f9a60043a97..0d5770c2e43a 100644 --- a/include/linux/smp.h +++ b/include/linux/smp.h | |||
| @@ -21,6 +21,9 @@ struct call_single_data { | |||
| 21 | u16 priv; | 21 | u16 priv; |
| 22 | }; | 22 | }; |
| 23 | 23 | ||
| 24 | /* total number of cpus in this system (may exceed NR_CPUS) */ | ||
| 25 | extern unsigned int total_cpus; | ||
| 26 | |||
| 24 | #ifdef CONFIG_SMP | 27 | #ifdef CONFIG_SMP |
| 25 | 28 | ||
| 26 | #include <linux/preempt.h> | 29 | #include <linux/preempt.h> |
