Changeset 97618 in vbox for trunk/src/VBox
- Timestamp:
- Nov 20, 2022 2:09:44 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154662
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r97562 r97618 529 529 AssertLogRelRCReturn(rc, rc); 530 530 531 /** @cfgm{/HM/AlwaysInterceptVmxMovDRx,int8_t, -1}531 /** @cfgm{/HM/AlwaysInterceptVmxMovDRx,int8_t,0} 532 532 * Whether to always intercept MOV DRx when using VMX. 533 533 * The value is a tristate: 1 for always intercepting, -1 for lazy intercept, … … 546 546 * Note that it seems DR6.RTM remains writable even after the microcode updates 547 547 * disabling TSX. */ 548 rc = CFGMR3QueryS8Def(pCfgHm, "AlwaysInterceptVmxMovDRx", &pVM->hm.s.vmx.fAlwaysInterceptMovDRxCfg, -1);548 rc = CFGMR3QueryS8Def(pCfgHm, "AlwaysInterceptVmxMovDRx", &pVM->hm.s.vmx.fAlwaysInterceptMovDRxCfg, 0); 549 549 AssertLogRelRCReturn(rc, rc); 550 550
Note:
See TracChangeset
for help on using the changeset viewer.