Changeset 31395 in vbox for trunk/src/VBox
- Timestamp:
- Aug 5, 2010 12:15:00 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64458
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r31238 r31395 931 931 */ 932 932 bool fEnable; 933 rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "EnablePAE", &fEnable, false); AssertRCReturn(rc, rc);933 rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "EnablePAE", &fEnable, false); AssertRCReturn(rc, rc); 934 934 if (fEnable) 935 935 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE); 936 937 /* 938 * We don't normally enable NX for raw-mode, so give the user a chance to 939 * force it on. 940 */ 941 rc = CFGMR3QueryBoolDef(pCpumCfg, "EnableNX", &fEnable, false); AssertRCReturn(rc, rc); 942 if (fEnable) 943 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_NXE); 936 944 937 945 /*
Note:
See TracChangeset
for help on using the changeset viewer.