diff options
author | Andi Kleen <ak@suse.de> | 2006-03-25 10:29:34 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-25 12:10:53 -0500 |
commit | 77d910f557c44db0fa72ee856c41cdd56972cfca (patch) | |
tree | 8ef1599205e93e47452148b8c3c9ed44e090eae1 /arch/x86_64/kernel | |
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/x86_64/kernel')
-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 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) | |||
878 | } | 878 | } |
879 | numa_set_node(cpu, node); | 879 | numa_set_node(cpu, node); |
880 | 880 | ||
881 | printk(KERN_INFO "CPU %d(%d) -> Node %d -> Core %d\n", | 881 | printk(KERN_INFO "CPU %d/%x(%d) -> Node %d -> Core %d\n", |
882 | cpu, c->x86_max_cores, node, cpu_core_id[cpu]); | 882 | cpu, apicid, c->x86_max_cores, node, cpu_core_id[cpu]); |
883 | #endif | 883 | #endif |
884 | #endif | 884 | #endif |
885 | } | 885 | } |