- Timestamp:
- Jun 4, 2019 10:48:07 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r78960 r78961 15808 15808 { 15809 15809 /* 15810 * We shouldn't direct host physical NMIs to the nested-guest. 15810 * Physical NMIs: 15811 * We shouldn't direct host physical NMIs to the nested-guest. Dispatch it to the 15812 * host. 15811 15813 */ 15812 15814 case VMX_EXIT_INT_INFO_TYPE_NMI: 15813 15815 return hmR0VmxExitHostNmi(pVCpu); 15814 15816 15817 /* 15818 * Hardware exceptions, 15819 * Software exceptions: 15820 * Privileged software exceptions: 15821 * Figure out if the exception must be delivered to the guest or the nested-guest. 15822 */ 15815 15823 case VMX_EXIT_INT_INFO_TYPE_HW_XCPT: 15816 15824 { … … 15836 15844 /* 15837 15845 * External interrupts: 15838 * This should only happen when "acknowledge external interrupts on VM-exit" control is set. 15839 * However, we don't set it when executing guests or nested-guests. For nested-guests it is 15840 * emulated while injecting interrupts into the guest. 15846 * This should only happen when "acknowledge external interrupts on VM-exit" 15847 * control is set. However, we don't set it when executing guests or 15848 * nested-guests. For nested-guests it is emulated while injecting interrupts into 15849 * the guest. 15841 15850 * 15842 15851 * Software interrupts:
Note:
See TracChangeset
for help on using the changeset viewer.