VirtualBox

Changeset 91971 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Oct 21, 2021 3:58:30 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
147777
Message:

VMM: Nested VMX: bugref:10092 Renamed typo in VMCS field.

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

Legend:

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

    r91580 r91971  
    926926        LogRel(("  %sPosted-intr desc addr      = %#RX64\n",   pszPrefix, pVmcs->u64AddrPostedIntDesc.u));
    927927        LogRel(("  %sVM-functions control       = %#RX64\n",   pszPrefix, pVmcs->u64VmFuncCtls.u));
    928         LogRel(("  %sEPTP ptr                   = %#RX64\n",   pszPrefix, pVmcs->u64EptpPtr.u));
     928        LogRel(("  %sEPTP ptr                   = %#RX64\n",   pszPrefix, pVmcs->u64EptPtr.u));
    929929        LogRel(("  %sEOI-exit bitmap 0          = %#RX64\n",   pszPrefix, pVmcs->u64EoiExitBitmap0.u));
    930930        LogRel(("  %sEOI-exit bitmap 1          = %#RX64\n",   pszPrefix, pVmcs->u64EoiExitBitmap1.u));
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h

    r91580 r91971  
    254254        /*    11 */ RT_UOFFSETOF(VMXVVMCS, u64AddrPostedIntDesc),
    255255        /*    12 */ RT_UOFFSETOF(VMXVVMCS, u64VmFuncCtls),
    256         /*    13 */ RT_UOFFSETOF(VMXVVMCS, u64EptpPtr),
     256        /*    13 */ RT_UOFFSETOF(VMXVVMCS, u64EptPtr),
    257257        /*    14 */ RT_UOFFSETOF(VMXVVMCS, u64EoiExitBitmap0),
    258258        /*    15 */ RT_UOFFSETOF(VMXVVMCS, u64EoiExitBitmap1),
     
    61006100            uint8_t const cMaxPhysAddrWidth = IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cMaxPhysAddrWidth;
    61016101            uint64_t const fValidMask       = VMX_EPTP_VALID_MASK & ~(UINT64_MAX << cMaxPhysAddrWidth);
    6102             if (pVmcs->u64EptpPtr.u & fValidMask)
     6102            if (pVmcs->u64EptPtr.u & fValidMask)
    61036103            { /* likely */ }
    61046104            else
     
    61076107            /* Memory Type. */
    61086108            uint64_t const fCaps    = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64EptVpidCaps;
    6109             uint8_t const  fMemType = RT_BF_GET(pVmcs->u64EptpPtr.u, VMX_BF_EPTP_MEMTYPE);
     6109            uint8_t const  fMemType = RT_BF_GET(pVmcs->u64EptPtr.u, VMX_BF_EPTP_MEMTYPE);
    61106110            if (   (   fMemType == VMX_EPTP_MEMTYPE_WB
    61116111                    && RT_BF_GET(fCaps, VMX_BF_EPT_VPID_CAP_MEMTYPE_WB))
     
    61236123             */
    61246124            Assert(RT_BF_GET(fCaps, VMX_BF_EPT_VPID_CAP_PAGE_WALK_LENGTH_4));
    6125             if (RT_BF_GET(pVmcs->u64EptpPtr.u, VMX_BF_EPTP_PAGE_WALK_LENGTH) == 3)
     6125            if (RT_BF_GET(pVmcs->u64EptPtr.u, VMX_BF_EPTP_PAGE_WALK_LENGTH) == 3)
    61266126            { /* likely */ }
    61276127            else
     
    61296129
    61306130            /* Access and dirty bits support in EPT structures. */
    6131             if (   !RT_BF_GET(pVmcs->u64EptpPtr.u, VMX_BF_EPTP_ACCESS_DIRTY)
     6131            if (   !RT_BF_GET(pVmcs->u64EptPtr.u, VMX_BF_EPTP_ACCESS_DIRTY)
    61326132                ||  RT_BF_GET(fCaps, VMX_BF_EPT_VPID_CAP_ACCESS_DIRTY))
    61336133            { /* likely */ }
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