Changeset 45557 in vbox for trunk/src/VBox
- Timestamp:
- Apr 15, 2013 5:50:23 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r45556 r45557 5941 5941 Log(("Injecting NMI\n")); 5942 5942 RTGCUINTPTR uIntrInfo; 5943 uIntrInfo = X86_XCPT_NMI; 5944 uIntrInfo |= (1 << VMX_EXIT_INTERRUPTION_INFO_VALID_SHIFT); 5943 uIntrInfo = X86_XCPT_NMI | (1 << VMX_EXIT_INTERRUPTION_INFO_VALID_SHIFT); 5945 5944 uIntrInfo |= (VMX_EXIT_INTERRUPTION_INFO_TYPE_NMI << VMX_EXIT_INTERRUPTION_INFO_TYPE_SHIFT); 5946 5945 rc = hmR0VmxInjectEventVmcs(pVCpu, pMixedCtx, uIntrInfo, 0 /* cbInstr */, 0 /* u32ErrCode */, &uIntrState); … … 8509 8508 int rc = hmR0VmxSaveGuestControlRegs(pVCpu, pMixedCtx); 8510 8509 AssertRCReturn(rc, rc); 8511 8512 rc = hmR0VmxSaveGuestGprs(pVCpu, pMixedCtx);8513 rc |= hmR0VmxSaveGuestSegmentRegs(pVCpu, pMixedCtx);8514 Log(("Rip %04x:%#RX64\n", pMixedCtx->cs.Sel, pMixedCtx->rip));8515 8510 8516 8511 /* Lazy FPU loading; Load the guest-FPU state transparently and continue execution of the guest. */
Note:
See TracChangeset
for help on using the changeset viewer.