aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64/kernel/setup.c
diff options
context:
space:
mode:
authorAndi Kleen <ak@suse.de>2006-03-25 16:29:34 +0100
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-25 09:10:53 -0800
commit77d910f557c44db0fa72ee856c41cdd56972cfca (patch)
tree8ef1599205e93e47452148b8c3c9ed44e090eae1 /arch/x86_64/kernel/setup.c
parent[PATCH] x86_64: Don't need to read PIT in timer handler when PM timer is used (diff)
downloadlinux-dev-77d910f557c44db0fa72ee856c41cdd56972cfca.tar.xz
linux-dev-77d910f557c44db0fa72ee856c41cdd56972cfca.zip
[PATCH] x86_64: Report local APIC ID when initializing CPU
Makes some debugging easier. Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to '')
-rw-r--r--arch/x86_64/kernel/setup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/setup.c b/arch/x86_64/kernel/setup.c
index 50cd2bbd75af..6ca07eaa26db 100644
--- a/arch/x86_64/kernel/setup.c
+++ b/arch/x86_64/kernel/setup.c
@@ -878,8 +878,8 @@ static void __init amd_detect_cmp(struct cpuinfo_x86 *c)
}
numa_set_node(cpu, node);
- printk(KERN_INFO "CPU %d(%d) -> Node %d -> Core %d\n",
- cpu, c->x86_max_cores, node, cpu_core_id[cpu]);
+ printk(KERN_INFO "CPU %d/%x(%d) -> Node %d -> Core %d\n",
+ cpu, apicid, c->x86_max_cores, node, cpu_core_id[cpu]);
#endif
#endif
}