Changeset 72456 in vbox
- Timestamp:
- Jun 6, 2018 3:53:15 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r72412 r72456 653 653 /** Indicates that we modified the host CR0 (FPU related). */ 654 654 #define VINF_CPUM_HOST_CR0_MODIFIED (1766) 655 /** Invalid/unsupported nested hardware virtualization configuration. */ 656 #define VERR_CPUM_INVALID_HWVIRT_CONFIG (-1767) 655 657 /** @} */ 656 658 -
trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp
r72345 r72456 3944 3944 if ( pConfig->fNestedHWVirt 3945 3945 && !fNestedPagingAndFullGuestExec) 3946 { 3947 LogRel(("CPUM: Warning! Can't turn on nested VT-x/AMD-V without nested-paging and unrestricted guest execution!\n")); 3948 pConfig->fNestedHWVirt = false; 3949 } 3946 return VMSetError(pVM, VERR_CPUM_INVALID_HWVIRT_CONFIG, RT_SRC_POS, 3947 "Cannot enable nested VT-x/AMD-V without nested-paging and unresricted guest execution!\n"); 3950 3948 #endif 3951 3949
Note:
See TracChangeset
for help on using the changeset viewer.