Changeset 7948 in vbox
- Timestamp:
- Apr 14, 2008 9:35:57 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGM.cpp
r7905 r7948 2911 2911 //case PGMMODE_PAE_NX: 2912 2912 case PGMMODE_PAE: 2913 if (!HWACCMR3IsAllowed(pVM)) 2914 { 2915 VMSetRuntimeError(pVM, true, "PAEmodeDependsHwaccm", 2916 N_("The guest is trying to switch to the PAE mode which is currently supported by VirtualBox only in VT-x mode or AMD-V mode. Either enable hardware virtualization for this VM or choose another flavour of the guest kernel (install a desktop kernel instead of a server kernel)")); 2917 /* we must return TRUE here otherwise the recompiler will assert */ 2918 return VINF_SUCCESS; 2919 } 2913 2920 GCPhysCR3 = CPUMGetGuestCR3(pVM) & X86_CR3_PAE_PAGE_MASK; 2914 2921 rc = PGM_GST_NAME_PAE(Enter)(pVM, GCPhysCR3);
Note:
See TracChangeset
for help on using the changeset viewer.