Changeset 21567 in vbox for trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
- Timestamp:
- Jul 14, 2009 10:08:27 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r21259 r21567 3915 3915 VMMR0DECL(int) VMXR0InvalidatePage(PVM pVM, PVMCPU pVCpu, RTGCPTR GCVirt) 3916 3916 { 3917 bool fFlushPending = pVCpu->hwaccm.s.fForceTLBFlush;3917 bool fFlushPending = VMCPU_FF_ISSET(pVCpu, VMCPU_FF_TLB_FLUSH); 3918 3918 3919 3919 Log2(("VMXR0InvalidatePage %RGv\n", GCVirt)); … … 3945 3945 VMMR0DECL(int) VMXR0InvalidatePhysPage(PVM pVM, PVMCPU pVCpu, RTGCPHYS GCPhys) 3946 3946 { 3947 bool fFlushPending = pVCpu->hwaccm.s.fForceTLBFlush;3947 bool fFlushPending = VMCPU_FF_ISSET(pVCpu, VMCPU_FF_TLB_FLUSH); 3948 3948 3949 3949 Assert(pVM->hwaccm.s.fNestedPaging);
Note:
See TracChangeset
for help on using the changeset viewer.