Changeset 72983 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jul 8, 2018 4:15:47 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123535
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r72966 r72983 2625 2625 * @param pVM The cross context VM structure. 2626 2626 * @param pVCpu The cross context virtual CPU structure. 2627 * @param pCtx Pointer to the guest CPU context. 2628 */ 2629 VMMR3_INT_DECL(int) HMR3PatchTprInstr(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx) 2630 { 2631 NOREF(pCtx); 2627 */ 2628 VMMR3_INT_DECL(int) HMR3PatchTprInstr(PVM pVM, PVMCPU pVCpu) 2629 { 2632 2630 int rc = VMMR3EmtRendezvous(pVM, VMMEMTRENDEZVOUS_FLAGS_TYPE_ONE_BY_ONE, 2633 2631 pVM->hm.s.pGuestPatchMem ? hmR3PatchTprInstr : hmR3ReplaceTprInstr, … … 3034 3032 * when the unrestricted guest execution feature is missing (VT-x only). 3035 3033 */ 3036 if ( pVM->hm.s.vmx.fEnabled3034 if ( pVM->hm.s.vmx.fEnabled 3037 3035 && !pVM->hm.s.vmx.fUnrestrictedGuest 3038 && CPUMIsGuestInRealModeEx(pCtx)3036 && CPUMIsGuestInRealModeEx(pCtx) 3039 3037 && !PDMVmmDevHeapIsEnabled(pVM)) 3040 3038 {
Note:
See TracChangeset
for help on using the changeset viewer.