Changeset 87831 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Feb 22, 2021 8:44:54 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142893
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r87754 r87831 9096 9096 #ifdef VBOX_WITH_NESTED_HWVIRT_VMX 9097 9097 if ( fIsNestedGuest 9098 && CPUMIsGuestVmxPinCtlsSet(pCtx, VMX_PIN_CTLS_EXT_INT_EXIT) 9099 && !CPUMIsGuestVmxExitCtlsSet(pCtx, VMX_EXIT_CTLS_ACK_EXT_INT)) 9098 && CPUMIsGuestVmxPinCtlsSet(pCtx, VMX_PIN_CTLS_EXT_INT_EXIT)) 9100 9099 { 9101 9100 VBOXSTRICTRC rcStrict = IEMExecVmxVmexitExtInt(pVCpu, 0 /* uVector */, true /* fIntPending */); 9102 Assert(rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE);9103 return rcStrict;9101 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE) 9102 return rcStrict; 9104 9103 } 9105 9104 #endif
Note:
See TracChangeset
for help on using the changeset viewer.