Changeset 99663 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- May 8, 2023 10:19:01 AM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 157192
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r99653 r99663 5923 5923 vmxHCTrpmTrapToPendingEvent(pVCpu); 5924 5924 5925 uint32_t fIntrState;5925 uint32_t const fIntrState = vmxHCGetGuestIntrStateWithUpdate(pVCpu); 5926 5926 #ifdef VBOX_WITH_NESTED_HWVIRT_VMX 5927 5927 if (!pVmxTransient->fIsNestedGuest) 5928 rcStrict = vmxHCEvaluatePendingEvent(pVCpu, pVmxTransient->pVmcsInfo , &fIntrState);5928 rcStrict = vmxHCEvaluatePendingEvent(pVCpu, pVmxTransient->pVmcsInfo); 5929 5929 else 5930 rcStrict = vmxHCEvaluatePendingEventNested(pVCpu, pVmxTransient->pVmcsInfo , &fIntrState);5930 rcStrict = vmxHCEvaluatePendingEventNested(pVCpu, pVmxTransient->pVmcsInfo); 5931 5931 5932 5932 /* … … 5943 5943 } 5944 5944 #else 5945 rcStrict = vmxHCEvaluatePendingEvent(pVCpu, pVmxTransient->pVmcsInfo , &fIntrState);5945 rcStrict = vmxHCEvaluatePendingEvent(pVCpu, pVmxTransient->pVmcsInfo); 5946 5946 Assert(rcStrict == VINF_SUCCESS); 5947 5947 #endif … … 5955 5955 * requirement. Regardless, we do this here to avoid duplicating code elsewhere. 5956 5956 */ 5957 rcStrict = vmxHCInjectPendingEvent(pVCpu, pVmxTransient->pVmcsInfo, pVmxTransient->fIsNestedGuest, 5958 fIntrState, fStepping); 5957 rcStrict = vmxHCInjectPendingEvent(pVCpu, pVmxTransient->pVmcsInfo, pVmxTransient->fIsNestedGuest, fIntrState, fStepping); 5959 5958 if (RT_LIKELY(rcStrict == VINF_SUCCESS)) 5960 5959 { /* likely */ }
Note:
See TracChangeset
for help on using the changeset viewer.