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 <nilay@cs.wisc.edu>
This commit is contained in:
Bjoern A. Zeeb
2015-11-16 04:58:39 -06:00
parent 5c49635f20
commit f50e92d2c7

View File

@@ -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 {