Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 77d910f5 authored by Andi Kleen's avatar Andi Kleen Committed by Linus Torvalds
Browse files

[PATCH] x86_64: Report local APIC ID when initializing CPU



Makes some debugging easier.

Signed-off-by: default avatarAndi Kleen <ak@suse.de>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 9ede6b09
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -878,8 +878,8 @@ static void __init amd_detect_cmp(struct cpuinfo_x86 *c)
 	}
 	}
	numa_set_node(cpu, node);
	numa_set_node(cpu, node);


  	printk(KERN_INFO "CPU %d(%d) -> Node %d -> Core %d\n",
  	printk(KERN_INFO "CPU %d/%x(%d) -> Node %d -> Core %d\n",
  			cpu, c->x86_max_cores, node, cpu_core_id[cpu]);
  			cpu, apicid, c->x86_max_cores, node, cpu_core_id[cpu]);
#endif
#endif
#endif
#endif
}
}