Changeset 71970 in vbox
- Timestamp:
- Apr 23, 2018 9:04:53 AM (7 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplSvmInstr.cpp.h
r71967 r71970 343 343 LogFlow(("iemSvmVmrun\n")); 344 344 345 #ifdef IN_RING0346 /*347 * Until PGM can handle switching the guest paging mode in ring-0,348 * there's no point in trying to emulate VMRUN in ring-0 as we have349 * to go back to ring-3 anyway, see @bugref{7243#c48}.350 */351 RT_NOREF(pVCpu, pCtx, cbInstr, GCPhysVmcb);352 return VERR_IEM_ASPECT_NOT_IMPLEMENTED;353 #else354 355 345 /* 356 346 * Cache the physical address of the VMCB for #VMEXIT exceptions. … … 835 825 Log(("iemSvmVmrun: Failed to read nested-guest VMCB at %#RGp (rc=%Rrc) -> #VMEXIT\n", GCPhysVmcb, rc)); 836 826 return rc; 837 #endif838 827 } 839 828 -
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r71965 r71970 7819 7819 { 7820 7820 HMSVM_VALIDATE_EXIT_HANDLER_PARAMS(); 7821 /** @todo Stat. */ 7822 /* STAM_COUNTER_INC(&pVCpu->hm.s.StatExitVmrun); */ 7823 #if 0 7821 7824 7822 VBOXSTRICTRC rcStrict; 7825 7823 uint8_t const cbInstr = hmR0SvmGetInstrLengthHwAssist(pVCpu, pCtx, 3); … … 7832 7830 } 7833 7831 return VBOXSTRICTRC_VAL(rcStrict); 7834 #endif7835 return VERR_EM_INTERPRETER;7836 7832 } 7837 7833
Note:
See TracChangeset
for help on using the changeset viewer.