Changeset 79147 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jun 14, 2019 6:57:14 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131314
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r79144 r79147 983 983 static int hmR0VmxLoadVmcs(PVMXVMCSINFO pVmcsInfo) 984 984 { 985 Assert(pVmcsInfo);986 985 Assert(pVmcsInfo->HCPhysVmcs); 987 986 Assert(!RTThreadPreemptIsEnabled(NIL_RTTHREAD)); … … 1009 1008 static int hmR0VmxClearVmcs(PVMXVMCSINFO pVmcsInfo) 1010 1009 { 1011 Assert(pVmcsInfo);1012 1010 Assert(pVmcsInfo->HCPhysVmcs); 1013 1011 Assert(!RTThreadPreemptIsEnabled(NIL_RTTHREAD)); … … 1032 1030 static int hmR0VmxSwitchVmcs(PVMXVMCSINFO pVmcsInfoFrom, PVMXVMCSINFO pVmcsInfoTo) 1033 1031 { 1034 Assert(pVmcsInfoFrom);1035 Assert(pVmcsInfoTo);1036 1037 1032 /* 1038 1033 * Clear the VMCS we are switching out if it has not already been cleared. … … 3496 3491 static int hmR0VmxSetupVmcs(PVMCPU pVCpu, PVMXVMCSINFO pVmcsInfo, bool fIsNstGstVmcs) 3497 3492 { 3498 Assert(pVmcsInfo);3499 3493 Assert(pVmcsInfo->pvVmcs); 3500 3494 Assert(!RTThreadPreemptIsEnabled(NIL_RTTHREAD));
Note:
See TracChangeset
for help on using the changeset viewer.