From: Andrew Cooper Date: Mon, 12 Sep 2016 09:07:35 +0000 (+0100) Subject: x86/cpu: Print CPU Family/Vendor infomation in both decimal and hexidecimal X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~410 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d45fae589b8d8b6d36c211dcc46d767dda730b61;p=xen.git x86/cpu: Print CPU Family/Vendor infomation in both decimal and hexidecimal Different manuals use different representations. A new sample looks like: (XEN) CPU Vendor: Intel, Family 6 (0x6), Model 60 (0x3c), Stepping 3 (raw 000306c3) Signed-off-by: Andrew Cooper Acked-by: Jan Beulich --- diff --git a/xen/arch/x86/cpu/common.c b/xen/arch/x86/cpu/common.c index a5cfe5299b..3475198845 100644 --- a/xen/arch/x86/cpu/common.c +++ b/xen/arch/x86/cpu/common.c @@ -238,8 +238,9 @@ static void __init early_cpu_detect(void) c->x86_capability[cpufeat_word(X86_FEATURE_SSE3)] = ecx; printk(XENLOG_INFO - "CPU Vendor: %s, Family %u, Model %u, Stepping %u (raw %08x)\n", - this_cpu->c_vendor, c->x86, c->x86_model, c->x86_mask, eax); + "CPU Vendor: %s, Family %u (%#x), Model %u (%#x), Stepping %u (raw %08x)\n", + this_cpu->c_vendor, c->x86, c->x86, + c->x86_model, c->x86_model, c->x86_mask, eax); eax = cpuid_eax(0x80000000); if ((eax >> 16) == 0x8000 && eax >= 0x80000008) {