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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user