- Timestamp:
- Aug 2, 2017 9:12:27 AM (7 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r68226 r68228 2628 2628 * Restores the host-state from the host-state save area as part of a \#VMEXIT. 2629 2629 * 2630 * @param pVCpu The cross context virtual CPU structure of the calling EMT.2631 2630 * @param pCtx The guest-CPU context. 2632 2631 */ … … 2666 2665 * Saves the host-state to the host-state save area as part of a VMRUN. 2667 2666 * 2668 * @param pVCpu The cross context virtual CPU structure of the calling EMT.2669 2667 * @param pCtx The guest-CPU context. 2670 2668 * @param cbInstr The length of the VMRUN instruction in bytes. -
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r68226 r68228 232 232 *********************************************************************************************************************************/ 233 233 static void hmR0SvmSetMsrPermission(PSVMVMCB pVmcb, uint8_t *pbMsrBitmap, unsigned uMsr, SVMMSREXITREAD enmRead, 234 SVMMSREXITWRITE enmWrite) ;234 SVMMSREXITWRITE enmWrite) 235 235 static void hmR0SvmPendingEventToTrpmTrap(PVMCPU pVCpu); 236 236 static void hmR0SvmLeave(PVMCPU pVCpu); … … 584 584 * Sets the permission bits for the specified MSR in the MSRPM. 585 585 * 586 * @param pV Cpu The cross context virtual CPU structure.587 * @param p Ctx Pointer to the guest CPU or nested-guest CPU context.588 * @param uMsr The MSR for which the access permissions are being set.589 * @param enmRead MSR read permissions.590 * @param enmWrite MSR write permissions.586 * @param pVmcb Pointer to the VM control block. 587 * @param pvMsrBitmap Pointer to the MSR bitmap. 588 * @param uMsr The MSR for which the access permissions are being set. 589 * @param enmRead MSR read permissions. 590 * @param enmWrite MSR write permissions. 591 591 */ 592 592 static void hmR0SvmSetMsrPermission(PSVMVMCB pVmcb, uint8_t *pbMsrBitmap, unsigned uMsr, SVMMSREXITREAD enmRead,
Note:
See TracChangeset
for help on using the changeset viewer.