diff options
author | Andi Kleen <ak@suse.de> | 2006-03-25 16:29:34 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-25 09:10:53 -0800 |
commit | 77d910f557c44db0fa72ee856c41cdd56972cfca (patch) | |
tree | 8ef1599205e93e47452148b8c3c9ed44e090eae1 /arch | |
parent | 9ede6b0945223d1e353501f41b988a3db56b4e27 (diff) |
[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 'arch')
-rw-r--r-- | arch/x86_64/kernel/setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/setup.c b/arch/x86_64/kernel/setup.c index 50cd2bbd75a..6ca07eaa26d 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 } |