Changeset 22042 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Aug 6, 2009 4:58:57 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50780
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r22037 r22042 534 534 * info too in these leaves (like words about having a constant TSC). 535 535 */ 536 if (pCPUM->aGuestCpuIdStd[0].eax > pVM->cCpuidLeafs) 537 pCPUM->aGuestCpuIdStd[0].eax = pVM->cCpuidLeafs; 536 { 537 bool fNt4LeafLimit; 538 PCFGMNODE pNode = CFGMR3GetRoot(pVM); 539 int rc = CFGMR3QueryBoolDef(pNode, "NT4LeafLimit", &fNt4LeafLimit, false); 540 if (RT_SUCCESS(rc) && fNt4LeafLimit) 541 pCPUM->aGuestCpuIdStd[0].eax = 2; 542 } 543 if (pCPUM->aGuestCpuIdStd[0].eax > 5) 544 pCPUM->aGuestCpuIdStd[0].eax = 5; 538 545 539 546 for (i = pCPUM->aGuestCpuIdStd[0].eax + 1; i < RT_ELEMENTS(pCPUM->aGuestCpuIdStd); i++) … … 1121 1128 ); 1122 1129 1123 /* Make sure we don't forget to update the masks when enabling 1124 * features in the future. 1130 /* Make sure we don't forget to update the masks when enabling 1131 * features in the future. 1125 1132 */ 1126 AssertRelease(!(pVM->cpum.s.aGuestCpuIdStd[1].ecx & 1133 AssertRelease(!(pVM->cpum.s.aGuestCpuIdStd[1].ecx & 1127 1134 ( X86_CPUID_FEATURE_ECX_DTES64 1128 1135 | X86_CPUID_FEATURE_ECX_VMX -
trunk/src/VBox/VMM/VM.cpp
r22037 r22042 594 594 rc = VERR_INVALID_PARAMETER; 595 595 } 596 }597 /*598 * Set correct CPUID leafs limit, some guests types,599 * notably Win NT 4.0 may wish to override this value.600 */601 if (RT_SUCCESS(rc))602 {603 uint32_t cCpuidLeafs;604 rc = CFGMR3QueryU32Def(CFGMR3GetRoot(pVM), "CpuidLeafs", &cCpuidLeafs, 5);605 pVM->cCpuidLeafs = cCpuidLeafs;606 596 } 607 597 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.