VirtualBox

Changeset 50333 in vbox for trunk


Ignore:
Timestamp:
Feb 5, 2014 3:44:39 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
92056
Message:

VMM, SupDrv: Allow VT-x when in presumed SMX mode when the VMXON bit is off. SMXON bit is what is relevant.

Location:
trunk/src/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPDrv.c

    r50008 r50333  
    34493449                    if (fInSmxMode && !fSmxVmxAllowed)
    34503450                        rc = VERR_VMX_MSR_SMX_VMXON_DISABLED;
    3451                     else if (!fVmxAllowed)
     3451                    else if (!fInSmxMode && !fVmxAllowed)
    34523452                        rc = VERR_VMX_MSR_VMXON_DISABLED;
    34533453                    else
  • trunk/src/VBox/VMM/VMMR0/HMR0.cpp

    r49934 r50333  
    809809        if (fInSmxMode && !fSmxVmxAllowed)
    810810            rc = VERR_VMX_MSR_SMX_VMXON_DISABLED;
    811         else if (!fVmxAllowed)
     811        else if (!fInSmxMode && !fVmxAllowed)
    812812            rc = VERR_VMX_MSR_VMXON_DISABLED;
    813813        else
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