From f50e92d2c7931bc5145d0c4f2ec94362a4414160 Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Mon, 16 Nov 2015 04:58:39 -0600 Subject: x86: cpuid: add family to warn() message doCpuid() has to identical warn messages about unimplemented functions. Add the family to the log message to make them distinguishable. Committed by: Nilay Vaish --- src/arch/x86/cpuid.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/arch/x86/cpuid.cc') diff --git a/src/arch/x86/cpuid.cc b/src/arch/x86/cpuid.cc index bcafa8d40..e15dcd331 100644 --- a/src/arch/x86/cpuid.cc +++ b/src/arch/x86/cpuid.cc @@ -138,7 +138,8 @@ namespace X86ISA { case TLB1GBPageInfo: case PerformanceInfo:*/ default: - warn("x86 cpuid: unimplemented function %u", funcNum); + warn("x86 cpuid family 0x8000: unimplemented function %u", + funcNum); return false; } } else if(family == 0x0000) { @@ -157,7 +158,8 @@ namespace X86ISA { 0xe7dbfbff, 0x04000209); break; default: - warn("x86 cpuid: unimplemented function %u", funcNum); + warn("x86 cpuid family 0x0000: unimplemented function %u", + funcNum); return false; } } else { -- cgit v1.2.3