- Timestamp:
- Sep 1, 2018 5:33:17 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r74017 r74018 1143 1143 1144 1144 /* CPL. */ 1145 if ( CPUMGetGuestCPL(pVCpu)> 0)1145 if (pVCpu->iem.s.uCpl > 0) 1146 1146 { 1147 1147 Log(("vmread: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl)); … … 1354 1354 1355 1355 /* CPL. */ 1356 if ( CPUMGetGuestCPL(pVCpu)> 0)1356 if (pVCpu->iem.s.uCpl > 0) 1357 1357 { 1358 1358 Log(("vmwrite: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl)); … … 1498 1498 1499 1499 /* CPL. */ 1500 if ( CPUMGetGuestCPL(pVCpu)> 0)1500 if (pVCpu->iem.s.uCpl > 0) 1501 1501 { 1502 1502 Log(("vmclear: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl)); … … 1610 1610 1611 1611 /* CPL. */ 1612 if ( CPUMGetGuestCPL(pVCpu)> 0)1612 if (pVCpu->iem.s.uCpl > 0) 1613 1613 { 1614 1614 Log(("vmptrst: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl)); … … 1657 1657 1658 1658 /* CPL. */ 1659 if ( CPUMGetGuestCPL(pVCpu)> 0)1659 if (pVCpu->iem.s.uCpl > 0) 1660 1660 { 1661 1661 Log(("vmptrld: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl)); … … 1969 1969 1970 1970 /* CPL. */ 1971 if ( CPUMGetGuestCPL(pVCpu)> 0)1971 if (pVCpu->iem.s.uCpl > 0) 1972 1972 { 1973 1973 Log(("vmlaunch: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
Note:
See TracChangeset
for help on using the changeset viewer.