Changeset 69566 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 3, 2017 2:46:23 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 118915
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplSvmInstr.cpp.h
r69409 r69566 291 291 IEM_STATIC VBOXSTRICTRC iemSvmVmrun(PVMCPU pVCpu, PCPUMCTX pCtx, uint8_t cbInstr, RTGCPHYS GCPhysVmcb) 292 292 { 293 PVM pVM = pVCpu->CTX_SUFF(pVM);294 293 LogFlow(("iemSvmVmrun\n")); 295 294 … … 300 299 * to go back to ring-3 anyway, see @bugref{7243#c48}. 301 300 */ 301 RT_NOREF(pVCpu, pCtx, cbInstr, GCPhysVmcb); 302 302 return VERR_IEM_ASPECT_NOT_IMPLEMENTED; 303 #e ndif303 #else 304 304 305 305 /* … … 316 316 * Read the guest VMCB state. 317 317 */ 318 PVM pVM = pVCpu->CTX_SUFF(pVM); 318 319 int rc = PGMPhysSimpleReadGCPhys(pVM, pCtx->hwvirt.svm.CTX_SUFF(pVmcb), GCPhysVmcb, sizeof(SVMVMCB)); 319 320 if (RT_SUCCESS(rc)) … … 662 663 Log(("iemSvmVmrun: Failed to read nested-guest VMCB at %#RGp (rc=%Rrc) -> #VMEXIT\n", GCPhysVmcb, rc)); 663 664 return rc; 665 #endif 664 666 } 665 667
Note:
See TracChangeset
for help on using the changeset viewer.