Changeset 62115 in vbox
- Timestamp:
- Jul 7, 2016 4:13:01 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r62108 r62115 3010 3010 else if (!pVCpu->hm.s.Event.fPending) 3011 3011 hmR0SvmEvaluatePendingEvent(pVCpu, pCtx); 3012 3013 /* On the oldest AMD-V systems, we may not get enough information to reinject an NMI. 3014 * Just do it in software. See @bugref{8411} 3015 * NB: If we could continue a task switch exit we wouldn't need to do this. 3016 */ 3017 if (RT_UNLIKELY(pVCpu->hm.s.Event.fPending && (((pVCpu->hm.s.Event.u64IntInfo >> 8) & 7) == SVM_EVENT_NMI))) 3018 if (RT_UNLIKELY(!pVM->hm.s.svm.u32Features)) 3019 return VINF_EM_RAW_INJECT_TRPM_EVENT; 3012 3020 3013 3021 #ifdef HMSVM_SYNC_FULL_GUEST_STATE
Note:
See TracChangeset
for help on using the changeset viewer.