Changeset 15142 in vbox
- Timestamp:
- Dec 9, 2008 9:22:03 AM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWACCMR0.cpp
r15141 r15142 1115 1115 return VMXR0Execute64BitsHandler(pVM, pVCpu, pCtx, pVM->hwaccm.s.pfnTest64, 5, &aParam[0]); 1116 1116 1117 return SVMR0Execute64BitsHandler(pVM, pVCpu, pCtx, pVM->hwaccm.s.pfnTest64 );1117 return SVMR0Execute64BitsHandler(pVM, pVCpu, pCtx, pVM->hwaccm.s.pfnTest64, 5, &aParam[0]); 1118 1118 } 1119 1119 # endif -
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r15141 r15142 2291 2291 { 2292 2292 uint32_t aParam[4]; 2293 int rc;2294 2293 2295 2294 aParam[0] = (uint32_t)(pVMCBHostPhys >> 32); /* Param 1: pVMCBHostPhys - Hi. */ -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r15141 r15142 3442 3442 { 3443 3443 uint32_t aParam[4]; 3444 int rc;3445 3444 PHWACCM_CPUINFO pCpu; 3446 3445 RTHCPHYS pPageCpuPhys; … … 3449 3448 pPageCpuPhys = RTR0MemObjGetPagePhysAddr(pCpu->pMemObj, 0); 3450 3449 3451 aParam[0] = (uint32_t)(pPageCpuPhys >> 32) );/* Param 1: VMXON physical address - Hi. */3450 aParam[0] = (uint32_t)(pPageCpuPhys >> 32); /* Param 1: VMXON physical address - Hi. */ 3452 3451 aParam[1] = (uint32_t)(pPageCpuPhys); /* Param 1: VMXON physical address - Lo. */ 3453 3452 aParam[2] = (uint32_t)(pVCpu->hwaccm.s.vmx.pVMCSPhys >> 32); /* Param 2: VMCS physical address - Hi. */
Note:
See TracChangeset
for help on using the changeset viewer.