Changeset 7993 in vbox
- Timestamp:
- Apr 15, 2008 2:08:02 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29647
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/VMM/PGM.cpp ¶
r7949 r7993 2911 2911 //case PGMMODE_PAE_NX: 2912 2912 case PGMMODE_PAE: 2913 if (!HWACCMIsEnabled(pVM)) 2913 { 2914 uint32_t u32Dummy, u32ExtFeatures; 2915 2916 CPUMGetGuestCpuId(pVM, 1, &u32Dummy, &u32Dummy, &u32Dummy, &u32ExtFeatures); 2917 if (!(u32ExtFeatures & X86_CPUID_FEATURE_EDX_PAE)) 2914 2918 { 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)")); 2919 /* Pause first, then inform Main. */ 2920 rc = VMR3SuspendNoSave(pVM); 2921 AssertRC(rc); 2922 2923 VMSetRuntimeError(pVM, true, "PAEmode", 2924 N_("The guest is trying to switch to the PAE mode which is currently disabled by default in VirtualBox. Experimental PAE support can be enabled using the -pae option with VBoxManage.")); 2917 2925 /* we must return TRUE here otherwise the recompiler will assert */ 2918 2926 return VINF_SUCCESS; … … 2933 2941 } 2934 2942 break; 2943 } 2935 2944 2936 2945 //case PGMMODE_AMD64_NX:
Note:
See TracChangeset
for help on using the changeset viewer.