Changeset 102391 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Nov 30, 2023 10:09:12 AM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp
r102386 r102391 3287 3287 /* Check if MTRR read+write support is enabled. */ 3288 3288 bool fEnableMtrrWrite; 3289 rc = CFGMR3QueryBoolDef(pCpumCfg, "MTRRWrite", &fEnableMtrrWrite, true);3289 rc = CFGMR3QueryBoolDef(pCpumCfg, "MTRRWrite", &fEnableMtrrWrite, false); 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, true);3300 rc = CFGMR3QueryBoolDef(pCpumCfg, "MTRR", &pVM->cpum.s.fMtrrRead, false); 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.