Changeset 71843 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Apr 12, 2018 10:15:02 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122050
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r71842 r71843 2386 2386 * @param pVCpu The cross context virtual CPU structure. 2387 2387 * @param pCtx Pointer to the nested-guest-CPU context. 2388 * @param pVmcbNstGst Pointer to the nested-guest VMCB. 2389 */ 2390 static void hmR0SvmMergeMsrpm(PHMGLOBALCPUINFO pHostCpu, PVMCPU pVCpu, PCPUMCTX pCtx, PSVMVMCB pVmcbNstGst) 2388 */ 2389 static void hmR0SvmMergeMsrpm(PHMGLOBALCPUINFO pHostCpu, PVMCPU pVCpu, PCPUMCTX pCtx) 2391 2390 { 2392 2391 uint64_t const *pu64GstMsrpm = (uint64_t const *)pVCpu->hm.s.svm.pvMsrBitmap; … … 4389 4388 else 4390 4389 { 4391 hmR0SvmMergeMsrpm(pHostCpu, pVCpu, pCtx , pVmcb);4392 4393 /* Update the nested-guest VMCB with the newly merged MSRPM .*/4390 hmR0SvmMergeMsrpm(pHostCpu, pVCpu, pCtx); 4391 4392 /* Update the nested-guest VMCB with the newly merged MSRPM (clean bits updated below). */ 4394 4393 pVmcb->ctrl.u64MSRPMPhysAddr = pHostCpu->n.svm.HCPhysNstGstMsrpm; 4395 4394 pbMsrBitmap = (uint8_t *)pHostCpu->n.svm.pvNstGstMsrpm;
Note:
See TracChangeset
for help on using the changeset viewer.