VirtualBox

Changeset 54874 in vbox for trunk


Ignore:
Timestamp:
Mar 20, 2015 3:17:42 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
99089
Message:

SUPR0QueryVTCaps: Added SUPVTCAPS_VTX_UNRESTRICTED_GUEST return flag. Increased the minor SUPDrv version number.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/include/VBox/sup.h

    r54650 r54874  
    725725 * @{
    726726 */
    727 #define SUPVTCAPS_AMD_V             RT_BIT(0)
    728 #define SUPVTCAPS_VT_X              RT_BIT(1)
    729 #define SUPVTCAPS_NESTED_PAGING     RT_BIT(2)
     727/** AMD-V support. */
     728#define SUPVTCAPS_AMD_V                     RT_BIT(0)
     729/** VT-x support. */
     730#define SUPVTCAPS_VT_X                      RT_BIT(1)
     731/** Nested paging is supported. */
     732#define SUPVTCAPS_NESTED_PAGING             RT_BIT(2)
     733/** VT-x: Unrestricted guest execution is supported. */
     734#define SUPVTCAPS_VTX_UNRESTRICTED_GUEST    RT_BIT(3)
    730735/** @} */
    731736
  • TabularUnified trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp

    r54867 r54874  
    39463946                        if (vtCaps.n.allowed1 & VMX_VMCS_CTRL_PROC_EXEC2_EPT)
    39473947                            *pfCaps |= SUPVTCAPS_NESTED_PAGING;
     3948                        if (vtCaps.n.allowed1 & VMX_VMCS_CTRL_PROC_EXEC2_UNRESTRICTED_GUEST)
     3949                            *pfCaps |= SUPVTCAPS_NESTED_PAGING;
    39483950                    }
    39493951                }
  • TabularUnified trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h

    r54650 r54874  
    215215 *          - (nothing)
    216216 */
    217 #define SUPDRV_IOC_VERSION                              0x001f0004
     217#define SUPDRV_IOC_VERSION                              0x001f0005
    218218
    219219/** SUP_IOCTL_COOKIE. */
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