Changeset 50540 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Feb 21, 2014 12:51:57 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92390
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r49925 r50540 508 508 break; 509 509 510 case VERR_VMX_MSR_ SMX_VMXON_DISABLED:511 pszMsg = "VT-x is disabled in the BIOS for Safer-Mode/Trusted Extensions.";510 case VERR_VMX_MSR_ALL_VMXON_DISABLED: 511 pszMsg = "VT-x is disabled in the BIOS for all CPU modes."; 512 512 break; 513 513 … … 917 917 case VERR_VMX_MSR_VMXON_DISABLED: 918 918 return VM_SET_ERROR(pVM, VERR_VMX_NO_VMX, "VT-x is disabled in the BIOS."); 919 case VERR_VMX_MSR_ SMX_VMXON_DISABLED:920 return VM_SET_ERROR(pVM, VERR_VMX_NO_VMX, "VT-x is disabled in the BIOS for Safer-Mode/Trusted Extensions.");919 case VERR_VMX_MSR_ALL_VMXON_DISABLED: 920 return VM_SET_ERROR(pVM, VERR_VMX_NO_VMX, "VT-x is disabled in the BIOS for all CPU modes."); 921 921 case VERR_VMX_MSR_LOCKING_FAILED: 922 922 return VM_SET_ERROR(pVM, VERR_VMX_NO_VMX, "Failed to enable and lock VT-x features.");
Note:
See TracChangeset
for help on using the changeset viewer.