diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-11 20:46:43 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-11 20:46:43 -0500 |
commit | 6df1e7f2e96721dfdbfd8a034e52bc81916f978c (patch) | |
tree | 8567e8dd37a2ebdc5f7670c88e82f2e9d9e725be /arch/x86/kernel/cpu/proc.c | |
parent | d96d8aa261708ecb1536d2733081800e7e15e8f4 (diff) | |
parent | b53b5eda8194214928c8243d711a75dbf51809fc (diff) |
Merge branch 'x86-cpu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 cpu changes from Ingo Molnar:
"The biggest change that stands out is the increase of the
CONFIG_NR_CPUS range from 4096 to 8192 - as real hardware out there
already went beyond 4k CPUs ...
We only allow more than 512 CPUs if offstack cpumasks are enabled.
CONFIG_MAXSMP=y remains to be the 'you are nuts!' extreme testcase,
which now means a max of 8192 CPUs"
* 'x86-cpu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/cpu: Increase max CPU count to 8192
x86/cpu: Allow higher NR_CPUS values
x86/cpu: Always print SMP information in /proc/cpuinfo
x86/cpu: Track legacy CPU model data only on 32-bit kernels
Diffstat (limited to 'arch/x86/kernel/cpu/proc.c')
-rw-r--r-- | arch/x86/kernel/cpu/proc.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/arch/x86/kernel/cpu/proc.c b/arch/x86/kernel/cpu/proc.c index aee6317b902f..06fe3ed8b851 100644 --- a/arch/x86/kernel/cpu/proc.c +++ b/arch/x86/kernel/cpu/proc.c | |||
@@ -11,15 +11,12 @@ static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c, | |||
11 | unsigned int cpu) | 11 | unsigned int cpu) |
12 | { | 12 | { |
13 | #ifdef CONFIG_SMP | 13 | #ifdef CONFIG_SMP |
14 | if (c->x86_max_cores * smp_num_siblings > 1) { | 14 | seq_printf(m, "physical id\t: %d\n", c->phys_proc_id); |
15 | seq_printf(m, "physical id\t: %d\n", c->phys_proc_id); | 15 | seq_printf(m, "siblings\t: %d\n", cpumask_weight(cpu_core_mask(cpu))); |
16 | seq_printf(m, "siblings\t: %d\n", | 16 | seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id); |
17 | cpumask_weight(cpu_core_mask(cpu))); | 17 | seq_printf(m, "cpu cores\t: %d\n", c->booted_cores); |
18 | seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id); | 18 | seq_printf(m, "apicid\t\t: %d\n", c->apicid); |
19 | seq_printf(m, "cpu cores\t: %d\n", c->booted_cores); | 19 | seq_printf(m, "initial apicid\t: %d\n", c->initial_apicid); |
20 | seq_printf(m, "apicid\t\t: %d\n", c->apicid); | ||
21 | seq_printf(m, "initial apicid\t: %d\n", c->initial_apicid); | ||
22 | } | ||
23 | #endif | 20 | #endif |
24 | } | 21 | } |
25 | 22 | ||