VirtualBox

Changeset 92546 in vbox


Ignore:
Timestamp:
Nov 22, 2021 12:13:32 PM (3 years ago)
Author:
vboxsync
Message:

VMM/IEM: Nested VMX: bugref:10092 Just check for RT_SUCCESS for PGMGstMapPaePdpesAtCr3.

Location:
trunk/src/VBox/VMM/VMMAll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImplSvmInstr.cpp.h

    r92541 r92546  
    313313            if (fHostInPaeMode)
    314314                rcStrict = PGMGstMapPaePdpesAtCr3(pVCpu, pHostState->uCr3);
    315             if (RT_LIKELY(rcStrict == VINF_SUCCESS))
     315            if (RT_SUCCESS(rcStrict))
    316316            {
    317317                /*
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h

    r92541 r92546  
    56455645        {
    56465646            int const rc = PGMGstMapPaePdpesAtCr3(pVCpu, pVmcs->u64GuestCr3.u);
    5647             if (rc == VINF_SUCCESS)
     5647            if (RT_SUCCESS(rc))
    56485648                *pfPdpesMapped = true;
    56495649            else
Note: See TracChangeset for help on using the changeset viewer.

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