Changeset 7977 in vbox
- Timestamp:
- Apr 15, 2008 11:17:08 AM (17 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r7696 r7977 404 404 else 405 405 break; 406 } 407 408 /* Check if PAE was explicitely enabled by the user. */ 409 PCFGMNODE pNode = CFGMR3GetChildF(CFGMR3GetRoot(pVM), "CPUM/CPUID"); 410 if (pNode) 411 { 412 bool fEnable; 413 int rc = CFGMR3QueryBool(pNode, "EnablePAE", &fEnable); 414 if (VBOX_SUCCESS(rc) && fEnable) 415 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE); 406 416 } 407 417 -
trunk/src/VBox/VMM/HWACCM.cpp
r7904 r7977 405 405 pVM->hwaccm.s.vmx.fEnabled = true; 406 406 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_SEP); 407 #if 0 /* not yet */408 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE);409 #endif410 407 LogRel(("HWACCM: VMX enabled!\n")); 411 408 }
Note:
See TracChangeset
for help on using the changeset viewer.