- Timestamp:
- Mar 20, 2015 3:17:42 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99089
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/VBox/sup.h ¶
r54650 r54874 725 725 * @{ 726 726 */ 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) 730 735 /** @} */ 731 736 -
TabularUnified trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp ¶
r54867 r54874 3946 3946 if (vtCaps.n.allowed1 & VMX_VMCS_CTRL_PROC_EXEC2_EPT) 3947 3947 *pfCaps |= SUPVTCAPS_NESTED_PAGING; 3948 if (vtCaps.n.allowed1 & VMX_VMCS_CTRL_PROC_EXEC2_UNRESTRICTED_GUEST) 3949 *pfCaps |= SUPVTCAPS_NESTED_PAGING; 3948 3950 } 3949 3951 } -
TabularUnified trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h ¶
r54650 r54874 215 215 * - (nothing) 216 216 */ 217 #define SUPDRV_IOC_VERSION 0x001f000 4217 #define SUPDRV_IOC_VERSION 0x001f0005 218 218 219 219 /** SUP_IOCTL_COOKIE. */
Note:
See TracChangeset
for help on using the changeset viewer.