Changeset 47056 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jul 9, 2013 2:16:53 PM (12 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r47055 r47056 558 558 { 559 559 /* Pentium-compatible MSRs. */ 560 ulBit 560 ulBit = uMsr * 2; 561 561 } 562 562 else if ( uMsr >= 0xC0000000 -
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r46975 r47056 9182 9182 /* Re-inject the exception into the guest. This cannot be a double-fault condition which would have been handled in 9183 9183 hmR0VmxCheckExitDueToEventDelivery(). */ 9184 int rc = 9184 int rc = hmR0VmxReadExitIntrErrorCodeVmcs(pVCpu, pVmxTransient); 9185 9185 rc |= hmR0VmxReadExitInstrLenVmcs(pVCpu, pVmxTransient); 9186 9186 AssertRCReturn(rc, rc); 9187 9187 Assert(pVmxTransient->fVmcsFieldsRead & HMVMX_UPDATED_TRANSIENT_EXIT_INTERRUPTION_INFO); 9188 9188 9189 hmR0VmxSetPendingEvent(pVCpu, VMX_VMCS_CTRL_ENTRY_IRQ_INFO_FROM_EXIT_INT_INFO(pVmxTransient->uExitIntrInfo), 9189 9190 pVmxTransient->cbInstr, pVmxTransient->uExitIntrErrorCode, 0 /* GCPtrFaultAddress */);
Note:
See TracChangeset
for help on using the changeset viewer.