Changeset 66044 in vbox
- Timestamp:
- Mar 10, 2017 4:51:12 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113910
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/HMSVMAll.cpp
r66040 r66044 193 193 pCtx->hwvirt.svm.GCPhysVmcb = GCPhysVmcb; 194 194 195 #if 0 195 196 SVMVMCB Vmcb; 196 197 PVM pVM = pVCpu->CTX_SUFF(pVM); 197 int rc = PGMPhysSimpleReadGCPhys(pVM, &Vmcb, GCPhysVmcb, X86_PAGE_4K_SIZE); 198 //int rc = PGMPhysSimpleReadGCPhys(pVM, &Vmcb, GCPhysVmcb, X86_PAGE_4K_SIZE); 199 int rc = VINF_SUCCESS; 198 200 if (RT_SUCCESS(rc)) 199 201 { … … 248 250 249 251 return rc; 252 #endif 253 return VERR_NOT_IMPLEMENTED; 254 250 255 } 251 256 -
trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h
r66040 r66044 5900 5900 #endif 5901 5901 5902 rcStrict = HMSvmVmrun(pVCpu, pCtx,);5902 VBOXSTRICTRC rcStrict = HMSvmVmrun(pVCpu, pCtx, GCPhysVmcb); 5903 5903 RT_NOREF(cbInstr); 5904 5904 return rcStrict;
Note:
See TracChangeset
for help on using the changeset viewer.