Changeset 50696 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Mar 5, 2014 10:19:04 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r50655 r50696 1779 1779 #endif 1780 1780 1781 Assert(pCpu->idCpu != NIL_RTCPUID); 1781 1782 pVCpu->hm.s.idLastCpu = pCpu->idCpu; 1782 1783 pVCpu->hm.s.cTlbFlushes = pCpu->cTlbFlushes; … … 1815 1816 AssertPtr(pCpu); 1816 1817 AssertPtr(pVCpu); 1818 Assert(pCpu->idCpu != NIL_RTCPUID); 1817 1819 AssertMsg(pVM->hm.s.fNestedPaging && pVM->hm.s.vmx.fVpid, 1818 1820 ("hmR0VmxFlushTaggedTlbBoth cannot be invoked unless NestedPaging & VPID are enabled." … … 1927 1929 AssertPtr(pVCpu); 1928 1930 AssertPtr(pCpu); 1931 Assert(pCpu->idCpu != NIL_RTCPUID); 1929 1932 AssertMsg(pVM->hm.s.fNestedPaging, ("hmR0VmxFlushTaggedTlbEpt cannot be invoked with NestedPaging disabled.")); 1930 1933 AssertMsg(!pVM->hm.s.vmx.fVpid, ("hmR0VmxFlushTaggedTlbEpt cannot be invoked with VPID enabled.")); … … 1993 1996 AssertPtr(pVCpu); 1994 1997 AssertPtr(pCpu); 1998 Assert(pCpu->idCpu != NIL_RTCPUID); 1995 1999 AssertMsg(pVM->hm.s.vmx.fVpid, ("hmR0VmxFlushTlbVpid cannot be invoked with VPID disabled.")); 1996 2000 AssertMsg(!pVM->hm.s.fNestedPaging, ("hmR0VmxFlushTlbVpid cannot be invoked with NestedPaging enabled"));
Note:
See TracChangeset
for help on using the changeset viewer.