VirtualBox

Changeset 102391 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Nov 30, 2023 10:09:12 AM (14 months ago)
Author:
vboxsync
Message:

VMM: Nested VMX: bugref:10318 Disable MTRR reporting until Linux guests are also happy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp

    r102386 r102391  
    32873287            /* Check if MTRR read+write support is enabled. */
    32883288            bool fEnableMtrrWrite;
    3289             rc = CFGMR3QueryBoolDef(pCpumCfg, "MTRRWrite", &fEnableMtrrWrite, true);
     3289            rc = CFGMR3QueryBoolDef(pCpumCfg, "MTRRWrite", &fEnableMtrrWrite, false);
    32903290            AssertRCReturn(rc, rc);
    32913291            if (fEnableMtrrWrite)
     
    32983298            {
    32993299                /* 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);
    33013301                AssertRCReturn(rc, rc);
    33023302                LogRel(("CPUM: Enabled MTRR read-only support\n"));
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette