diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-03-06 01:13:34 -0800 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 17:40:57 +0200 |
commit | 282bfe21cf0e2af9eac052c89bcc0a5ace80352f (patch) | |
tree | ba20a4b48ef1c31a973666e3f4457b9a3dc28ee1 /arch/x86/kernel/cpu/proc.c | |
parent | a7062211865efb53cda253d6e33a106f0fe20ebe (diff) | |
download | blackbird-obmc-linux-282bfe21cf0e2af9eac052c89bcc0a5ace80352f.tar.gz blackbird-obmc-linux-282bfe21cf0e2af9eac052c89bcc0a5ace80352f.zip |
x86: show apicid for cpu in proc
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/cpu/proc.c')
-rw-r--r-- | arch/x86/kernel/cpu/proc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/proc.c b/arch/x86/kernel/cpu/proc.c index 15043a335ef1..e8e58c09625d 100644 --- a/arch/x86/kernel/cpu/proc.c +++ b/arch/x86/kernel/cpu/proc.c @@ -59,6 +59,7 @@ static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c, cpus_weight(per_cpu(cpu_core_map, cpu))); seq_printf(m, "core id\t\t: %d\n", c->cpu_core_id); seq_printf(m, "cpu cores\t: %d\n", c->booted_cores); + seq_printf(m, "apicid\t\t: %d\n", c->apicid); } #endif } |