Changeset 54153 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Feb 11, 2015 5:24:15 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98186
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMR0.cpp
r52192 r54153 1235 1235 * @returns VBox status code. 1236 1236 * @param pVM Pointer to the VM. 1237 * 1238 * @remarks This is called after HMR3Init(), see vmR3CreateU() and 1239 * vmR3InitRing3(). 1237 1240 */ 1238 1241 VMMR0_INT_DECL(int) HMR0InitVM(PVM pVM) … … 1254 1257 pVM->hm.s.svm.fSupported = g_HvmR0.svm.fSupported; 1255 1258 1256 pVM->hm.s.vmx.fUsePreemptTimer = g_HvmR0.vmx.fUsePreemptTimer;1259 pVM->hm.s.vmx.fUsePreemptTimer &= g_HvmR0.vmx.fUsePreemptTimer; /* Can be overridden by CFGM. See HMR3Init(). */ 1257 1260 pVM->hm.s.vmx.cPreemptTimerShift = g_HvmR0.vmx.cPreemptTimerShift; 1258 1261 pVM->hm.s.vmx.u64HostCr4 = g_HvmR0.vmx.u64HostCr4;
Note:
See TracChangeset
for help on using the changeset viewer.