summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Schou2008-10-09 20:47:24 +0200
committerIngo Molnar2008-10-10 17:03:59 +0200
commit43603c8df97f246e8be7b9cc92a8f968a85108bd (patch)
treec9e8259c1756520a25d8051b515aa6ab77a3288c
parentx86 setup: handle more than 8 CPU flag words (diff)
downloadkernel-qcow2-linux-43603c8df97f246e8be7b9cc92a8f968a85108bd.tar.gz
kernel-qcow2-linux-43603c8df97f246e8be7b9cc92a8f968a85108bd.tar.xz
kernel-qcow2-linux-43603c8df97f246e8be7b9cc92a8f968a85108bd.zip
x86, debug: print more information about unknown CPUs
Write the name of the unknown vendor_id to output instead of just "unknown". Tag changed to 'vendor_id' as used in /proc/cpuinfo Signed-off-by: Hans Schou <linux@schou.dk> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/cpu/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c
index cef3519b3bbb..84c4040efa80 100644
--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -406,7 +406,7 @@ static void __cpuinit get_cpu_vendor(struct cpuinfo_x86 *c)
if (!printed) {
printed++;
- printk(KERN_ERR "CPU: Vendor unknown, using generic init.\n");
+ printk(KERN_ERR "CPU: vendor_id '%s' unknown, using generic init.\n", v);
printk(KERN_ERR "CPU: Your system may be unstable.\n");
}