VirtualBox

Changeset 24283 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 3, 2009 10:45:09 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
54264
Message:

Cleaned up

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp

    r24251 r24283  
    22592259    RTGCUINTPTR errCode, instrInfo;
    22602260    bool        fSetupTPRCaching = false;
    2261     uint64_t    u64LSTAR = 0;
     2261    uint64_t    u64OldLSTAR = 0;
    22622262    uint8_t     u8LastTPR = 0;
    22632263    RTCCUINTREG uOldEFlags = ~(RTCCUINTREG)0;
     
    26122612    {
    26132613        Assert(pVM->hwaccm.s.fTPRPatchingActive);
    2614         u64LSTAR = ASMRdMsr(MSR_K8_LSTAR);
     2614        u64OldLSTAR = ASMRdMsr(MSR_K8_LSTAR);
    26152615        ASMWrMsr(MSR_K8_LSTAR, u8LastTPR);
    26162616    }
     
    26362636    {
    26372637        Assert(pVM->hwaccm.s.fTPRPatchingActive);
    2638         pCtx->msrLSTAR = ASMRdMsr(MSR_K8_LSTAR);
    2639         ASMWrMsr(MSR_K8_LSTAR, u64LSTAR);
     2638        pVCpu->hwaccm.s.vmx.pVAPIC[0x80] = pCtx->msrLSTAR = ASMRdMsr(MSR_K8_LSTAR);
     2639        ASMWrMsr(MSR_K8_LSTAR, u64OldLSTAR);
    26402640    }
    26412641
     
    27362736
    27372737    /* Sync back the TPR if it was changed. */
    2738     if (fSetupTPRCaching)
    2739     {
    2740         if (pVM->hwaccm.s.fTPRPatchingActive)
    2741         {
    2742             if ((pCtx->msrLSTAR & 0xff) != u8LastTPR)
    2743             {
    2744                 /* Our patch code uses LSTAR for TPR caching. */
    2745                 rc = PDMApicSetTPR(pVCpu, pCtx->msrLSTAR & 0xff);
    2746                 AssertRC(rc);
    2747             }
    2748         }
    2749         else
    2750         if (u8LastTPR != pVCpu->hwaccm.s.vmx.pVAPIC[0x80])
    2751         {
    2752             rc = PDMApicSetTPR(pVCpu, pVCpu->hwaccm.s.vmx.pVAPIC[0x80]);
    2753             AssertRC(rc);
    2754         }
     2738    if (    fSetupTPRCaching
     2739        &&  u8LastTPR != pVCpu->hwaccm.s.vmx.pVAPIC[0x80]
     2740    {
     2741        rc = PDMApicSetTPR(pVCpu, pVCpu->hwaccm.s.vmx.pVAPIC[0x80]);
     2742        AssertRC(rc);
    27552743    }
    27562744
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette