Changeset 75316 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 8, 2018 4:29:02 AM (6 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r75301 r75316 19 19 #ifdef VBOX_WITH_NESTED_HWVIRT_VMX 20 20 /** @todo NSTVMX: The following VM-exit intercepts are pending: 21 * VMX_EXIT_INIT_SIGNAL22 * VMX_EXIT_SIPI23 21 * VMX_EXIT_IO_SMI 24 22 * VMX_EXIT_SMI -
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r75245 r75316 1580 1580 return VINF_SUCCESS; 1581 1581 1582 1583 1582 PCPUMCTX pCtx = CPUMQueryGuestCtxPtr(pVCpu); 1584 1583 #ifdef VBOX_WITH_NESTED_HWVIRT_VMX … … 1633 1632 /* If the CPU is in VMX non-root mode, INIT signals cause VM-exits. */ 1634 1633 #ifdef VBOX_WITH_NESTED_HWVIRT_VMX 1635 PC PUMCTX pCtx = CPUMQueryGuestCtxPtr(pVCpu);1634 PCCPUMCTX pCtx = CPUMQueryGuestCtxPtr(pVCpu); 1636 1635 if (CPUMIsGuestInVmxNonRootMode(pCtx)) 1637 1636 return VBOXSTRICTRC_TODO(IEMExecVmxVmexitInitIpi(pVCpu)); 1638 1637 #endif 1639 1638 1640 /** @todo Figure out how to handle a nested-guest intercepts here for INIT1639 /** @todo Figure out how to handle a SVM nested-guest intercepts here for INIT 1641 1640 * IPI (e.g. SVM_EXIT_INIT). */ 1642 1641
Note:
See TracChangeset
for help on using the changeset viewer.