Changeset 10830 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 23, 2008 1:37:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r10820 r10830 189 189 * Check CFGM options. 190 190 */ 191 /* Nested paging: disabled by default. */ 192 rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "EnableNestedPaging", &pVM->hwaccm.s.fAllowNestedPaging, false); 191 #ifdef VBOX_WITH_NESTED_PAGING /* regressions on testboxlin */ 192 /* Nested paging: enabled by default. */ 193 rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "EnableNestedPaging", &pVM->hwaccm.s.fAllowNestedPaging, true); 193 194 AssertRC(rc); 195 #endif 194 196 195 197 /* HWACCM support must be explicitely enabled in the configuration file. */
Note:
See TracChangeset
for help on using the changeset viewer.