Changeset 47054 in vbox
- Timestamp:
- Jul 9, 2013 12:49:31 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r46942 r47054 2755 2755 int rc = PDMApicSetTPR(pVCpu, (pMixedCtx->msrLSTAR & 0xff)); 2756 2756 AssertRC(rc); 2757 pVCpu->hm.s.fContextUseFlags |= HM_CHANGED_SVM_GUEST_APIC_STATE; 2757 2758 } 2758 2759 else if (pSvmTransient->u8GuestTpr != pVmcb->ctrl.IntCtrl.n.u8VTPR) … … 3313 3314 int rc2 = PDMApicSetTPR(pVCpu, u8Tpr); 3314 3315 AssertRC(rc2); 3316 pVCpu->hm.s.fContextUseFlags |= HM_CHANGED_SVM_GUEST_APIC_STATE; 3317 3315 3318 pCtx->rip += pPatch->cbOp; 3316 3319 break; … … 3804 3807 int rc2 = PDMApicSetTPR(pVCpu, pCtx->eax & 0xff); 3805 3808 AssertRC(rc2); 3809 pVCpu->hm.s.fContextUseFlags |= HM_CHANGED_SVM_GUEST_APIC_STATE; 3806 3810 } 3807 3811 pCtx->rip += 2; /* Hardcoded opcode, AMD-V doesn't give us this information. */
Note:
See TracChangeset
for help on using the changeset viewer.