VirtualBox

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


Ignore:
Timestamp:
Sep 16, 2021 10:04:16 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
146951
Message:

VMM/CPUM,++: Moved the nested SVM I/O permission bitmap allocation into CPUMCTX. bugref:10093

File:
1 edited

Legend:

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

    r91289 r91291  
    563563         * Copy the IO permission bitmap into the cache.
    564564         */
    565         Assert(pVCpu->cpum.GstCtx.hwvirt.svm.CTX_SUFF(pvIoBitmap));
    566         rc = PGMPhysSimpleReadGCPhys(pVM, pVCpu->cpum.GstCtx.hwvirt.svm.CTX_SUFF(pvIoBitmap), GCPhysIOBitmap,
    567                                      SVM_IOPM_PAGES * X86_PAGE_4K_SIZE);
     565        AssertCompile(sizeof(pVCpu->cpum.GstCtx.hwvirt.svm.abIoBitmap) == SVM_IOPM_PAGES * X86_PAGE_4K_SIZE);
     566        rc = PGMPhysSimpleReadGCPhys(pVM, pVCpu->cpum.GstCtx.hwvirt.svm.abIoBitmap, GCPhysIOBitmap,
     567                                     sizeof(pVCpu->cpum.GstCtx.hwvirt.svm.abIoBitmap));
    568568        if (RT_FAILURE(rc))
    569569        {
     
    989989
    990990    SVMIOIOEXITINFO IoExitInfo;
    991     void *pvIoBitmap = pVCpu->cpum.GstCtx.hwvirt.svm.CTX_SUFF(pvIoBitmap);
    992     bool const fIntercept = CPUMIsSvmIoInterceptSet(pvIoBitmap, u16Port, enmIoType, cbReg, cAddrSizeBits, iEffSeg, fRep,
    993                                                     fStrIo, &IoExitInfo);
     991    bool const fIntercept = CPUMIsSvmIoInterceptSet(pVCpu->cpum.GstCtx.hwvirt.svm.abMsrBitmap, u16Port, enmIoType, cbReg,
     992                                                    cAddrSizeBits, iEffSeg, fRep, fStrIo, &IoExitInfo);
    994993    if (fIntercept)
    995994    {
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