Changeset 102371 in vbox for trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp
- Timestamp:
- Nov 29, 2023 7:30:05 AM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp
r102088 r102371 3287 3287 /* Check if MTRR read+write support is enabled. */ 3288 3288 bool fEnableMtrrWrite; 3289 rc = CFGMR3QueryBoolDef(pCpumCfg, "MTRRWrite", &fEnableMtrrWrite, false);3289 rc = CFGMR3QueryBoolDef(pCpumCfg, "MTRRWrite", &fEnableMtrrWrite, true); 3290 3290 AssertRCReturn(rc, rc); 3291 3291 if (fEnableMtrrWrite) … … 3298 3298 { 3299 3299 /* Check if MTRR read-only reporting is enabled. */ 3300 rc = CFGMR3QueryBoolDef(pCpumCfg, "MTRR", &pVM->cpum.s.fMtrrRead, false);3300 rc = CFGMR3QueryBoolDef(pCpumCfg, "MTRR", &pVM->cpum.s.fMtrrRead, true); 3301 3301 AssertRCReturn(rc, rc); 3302 3302 LogRel(("CPUM: Enabled MTRR read-only support\n"));
Note:
See TracChangeset
for help on using the changeset viewer.