Changeset 46975 in vbox
- Timestamp:
- Jul 4, 2013 10:25:38 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86983
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r46973 r46975 2019 2019 } 2020 2020 2021 /* Initialize these always, see hmR3InitFinalizeR0().*/2022 pVM->hm.s.vmx.enmFlushEpt = VMX_FLUSH_EPT_NONE;2023 pVM->hm.s.vmx.enmFlushVpid = VMX_FLUSH_VPID_NONE;2024 2025 2021 #ifdef VBOX_WITH_HYBRID_32BIT_KERNEL 2026 2022 /* … … 2035 2031 } 2036 2032 #endif 2033 2034 /* Initialize these always, see hmR3InitFinalizeR0().*/ 2035 pVM->hm.s.vmx.enmFlushEpt = VMX_FLUSH_EPT_NONE; 2036 pVM->hm.s.vmx.enmFlushVpid = VMX_FLUSH_VPID_NONE; 2037 2037 2038 2038 /* Setup the tagged-TLB flush handlers. */ -
trunk/src/VBox/VMM/VMMR3/HM.cpp
r46871 r46975 443 443 * The number of times to resume guest execution before we forcibly return to 444 444 * ring-3. The return value of RTThreadPreemptIsPendingTrusty in ring-0 445 * determin s the default value. */445 * determines the default value. */ 446 446 rc = CFGMR3QueryU32Def(pCfgHM, "MaxResumeLoops", &pVM->hm.s.cMaxResumeLoops, 0 /* set by R0 later */); 447 447 AssertLogRelRCReturn(rc, rc);
Note:
See TracChangeset
for help on using the changeset viewer.