VirtualBox

Changeset 92516 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 19, 2021 8:52:38 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
148391
Message:

VMM/CPUM,NEM: The fNestedPagingAndFullGuestExec condition in cpumR3InitCpuIdAndMsrs does not apply to NEM, as we don't do the shadow page tables there and are unlikely to have to deal with funny instructions. Any NEM restrictions should be applied selectively where needed. bugref:9044

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp

    r92515 r92516  
    42284228            if (VM_IS_NEM_ENABLED(pVM))
    42294229            {
    4230                 LogRel(("CPUM: WARNING! Can't turn on nested VT-x/AMD-V when NEM is used!\n"));
     4230                LogRel(("CPUM: WARNING! Can't turn on nested VT-x/AMD-V when NEM is used! (later)\n"));
    42314231                pConfig->fNestedHWVirt = false;
    42324232            }
     
    43404340    AssertLogRelRCReturn(rc, rc);
    43414341
    4342     bool const fMayHaveXSave = fNestedPagingAndFullGuestExec
    4343                             && pVM->cpum.s.HostFeatures.fXSaveRstor
     4342    bool const fMayHaveXSave = pVM->cpum.s.HostFeatures.fXSaveRstor
    43444343                            && pVM->cpum.s.HostFeatures.fOpSysXSaveRstor
    4345                             && (   !VM_IS_NEM_ENABLED(pVM)
    4346                                 || (NEMHCGetFeatures(pVM) & NEM_FEAT_F_XSAVE_XRSTOR));
     4344                            && (  !VM_IS_NEM_ENABLED(pVM)
     4345                                ? fNestedPagingAndFullGuestExec
     4346                                : NEMHCGetFeatures(pVM) & NEM_FEAT_F_XSAVE_XRSTOR);
    43474347    uint64_t const fXStateHostMask = pVM->cpum.s.fXStateHostMask;
    43484348
     
    45454545    RT_ZERO(Config);
    45464546
    4547     bool const fNestedPagingAndFullGuestExec =   VM_IS_NEM_ENABLED(pVM)
    4548                                                ?     ((NEMHCGetFeatures(pVM) & (NEM_FEAT_F_NESTED_PAGING | NEM_FEAT_F_FULL_GST_EXEC))
    4549                                                   == (NEM_FEAT_F_NESTED_PAGING | NEM_FEAT_F_FULL_GST_EXEC))
    4550                                                : HMAreNestedPagingAndFullGuestExecEnabled(pVM);
     4547    bool const fNestedPagingAndFullGuestExec = VM_IS_NEM_ENABLED(pVM) || HMAreNestedPagingAndFullGuestExecEnabled(pVM);
    45514548    int rc = cpumR3CpuIdReadConfig(pVM, &Config, pCpumCfg, fNestedPagingAndFullGuestExec);
    45524549    AssertRCReturn(rc, rc);
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