Changeset 13200 in vbox
- Timestamp:
- Oct 13, 2008 9:27:44 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r13199 r13200 835 835 int rc = VMXWriteVMCS(VMX_VMCS_GUEST_PDPTR0_FULL + i*2, Pdpe.u); 836 836 #if HC_ARCH_BITS == 32 837 rc |=VMXWriteVMCS(VMX_VMCS_GUEST_PDPTR0_FULL + i*2 + 1, Pdpe.u >> 32ULL);837 rc |= VMXWriteVMCS(VMX_VMCS_GUEST_PDPTR0_FULL + i*2 + 1, Pdpe.u >> 32ULL); 838 838 #endif 839 839 AssertRC(rc); … … 3057 3057 bool fFlushPending = pVM->hwaccm.s.fForceTLBFlush; 3058 3058 3059 /* @todo Only relevant if we want to use VPID. */ 3060 Assert(!pVM->hwaccm.s.fNestedPaging); 3061 3059 /* Only relevant if we want to use VPID. 3060 * In the nested paging case we still see such calls, but 3061 * can safely ignore them. (e.g. after cr3 updates) 3062 */ 3062 3063 #ifdef HWACCM_VTX_WITH_VPID 3063 3064 /* Skip it if a TLB flush is already pending. */
Note:
See TracChangeset
for help on using the changeset viewer.