Changeset 23733 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Oct 13, 2009 2:48:10 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 53453
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r23638 r23733 331 331 PCFGMNODE pHWVirtExt = CFGMR3GetChild(pRoot, "HWVirtExt/"); 332 332 /* Nested paging: disabled by default. */ 333 rc = CFGMR3QueryBoolDef(p Root, "EnableNestedPaging", &pVM->hwaccm.s.fAllowNestedPaging, false);333 rc = CFGMR3QueryBoolDef(pHWVirtExt, "EnableNestedPaging", &pVM->hwaccm.s.fAllowNestedPaging, false); 334 334 AssertRC(rc); 335 335 336 336 /* VT-x VPID: disabled by default. */ 337 rc = CFGMR3QueryBoolDef(p Root, "EnableVPID", &pVM->hwaccm.s.vmx.fAllowVPID, false);337 rc = CFGMR3QueryBoolDef(pHWVirtExt, "EnableVPID", &pVM->hwaccm.s.vmx.fAllowVPID, false); 338 338 AssertRC(rc); 339 339 … … 387 387 * Default false for Mac OS X and Windows due to the higher risk of conflicts with other hypervisors. 388 388 */ 389 rc = CFGMR3QueryBoolDef(pHWVirtExt, "E nableGlobalInit", &pVM->hwaccm.s.fGlobalInit,389 rc = CFGMR3QueryBoolDef(pHWVirtExt, "Exclusive", &pVM->hwaccm.s.fGlobalInit, 390 390 #if defined(RT_OS_DARWIN) || defined(RT_OS_WINDOWS) 391 391 false
Note:
See TracChangeset
for help on using the changeset viewer.