Changeset 91586 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 6, 2021 9:02:05 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147296
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp
r91354 r91586 4201 4201 if (pConfig->fNestedHWVirt) 4202 4202 { 4203 if (!fNestedPagingAndFullGuestExec)4204 return VMSetError(pVM, VERR_CPUM_INVALID_HWVIRT_CONFIG, RT_SRC_POS,4205 "Cannot enable nested VT-x/AMD-V without nested-paging and unresricted guest execution!\n");4206 4207 4203 /** @todo Think about enabling this later with NEM/KVM. */ 4208 4204 if (VM_IS_NEM_ENABLED(pVM)) … … 4211 4207 pConfig->fNestedHWVirt = false; 4212 4208 } 4209 else if (!fNestedPagingAndFullGuestExec) 4210 return VMSetError(pVM, VERR_CPUM_INVALID_HWVIRT_CONFIG, RT_SRC_POS, 4211 "Cannot enable nested VT-x/AMD-V without nested-paging and unresricted guest execution!\n"); 4213 4212 } 4214 4213
Note:
See TracChangeset
for help on using the changeset viewer.