Changeset 49734 in vbox for trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
- Timestamp:
- Nov 29, 2013 10:11:04 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r49729 r49734 9270 9270 9271 9271 uint32_t uExitIntInfo = pVmxTransient->uExitIntInfo; 9272 uint32_t uVector 9272 uint32_t uVector = VMX_EXIT_INTERRUPTION_INFO_VECTOR(uExitIntInfo); 9273 9273 switch (uIntType) 9274 9274 { … … 10847 10847 if (!(pMixedCtx->cr0 & X86_CR0_NE)) 10848 10848 { 10849 /* Convert a #MF into a FERR -> IRQ 13. */10850 rc = PDMIsaSetIrq(pVCpu->CTX_SUFF(pVM), 13, 1, 0 /* uTagSrc*/);10849 /* Convert a #MF into a FERR -> IRQ 13. See @bugref{6117}. */ 10850 rc = PDMIsaSetIrq(pVCpu->CTX_SUFF(pVM), 13, 1, 0 /* uTagSrc */); 10851 10851 int rc2 = hmR0VmxAdvanceGuestRip(pVCpu, pMixedCtx, pVmxTransient); 10852 10852 AssertRCReturn(rc2, rc2);
Note:
See TracChangeset
for help on using the changeset viewer.