VirtualBox

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


Ignore:
Timestamp:
Dec 18, 2019 10:47:57 AM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
135499
Message:

VMM/HM: Disable LBR virtualization by default. Only enable when set via CFGM for now.

File:
1 edited

Legend:

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

    r82011 r82612  
    356356     * if it's available. */
    357357    rc = CFGMR3QueryBoolDef(pCfgHm, "SvmVGif", &pVM->hm.s.svm.fVGif, true);
     358    AssertRCReturn(rc, rc);
     359
     360    /** @cfgm{/HM/SvmLbrVirt, bool, false}
     361     * Whether to make use of the LBR virtualization feature of the CPU if it's
     362     * available. This is disabled by default as its only useful while debugging
     363     * and enabling it causes a small hit to performance. */
     364    rc = CFGMR3QueryBoolDef(pCfgHm, "SvmLbrVirt", &pVM->hm.s.svm.fLbrVirt, false);
    358365    AssertRCReturn(rc, rc);
    359366
Note: See TracChangeset for help on using the changeset viewer.

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