Changeset 33731 in vbox
- Timestamp:
- Nov 3, 2010 3:57:50 PM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r33709 r33731 153 153 mHWVirtExEnabled = true; 154 154 mHWVirtExNestedPagingEnabled = true; 155 #if HC_ARCH_BITS == 64 155 #if HC_ARCH_BITS == 64 && !defined(RT_OS_LINUX) 156 156 mHWVirtExLargePagesEnabled = true; 157 157 #else -
trunk/src/VBox/Main/xml/Settings.cpp
r33661 r33731 1620 1620 1621 1621 /* The default value of large page supports depends on the host: 1622 * - 64 bits host -> true 1622 * - 64 bits host -> true, unless it's Linux (pending further prediction work due to excessively expensive large page allocations) 1623 1623 * - 32 bits host -> false 1624 1624 */ 1625 #if HC_ARCH_BITS == 64 1625 #if HC_ARCH_BITS == 64 && !defined(RT_OS_LINUX) 1626 1626 fLargePages = true; 1627 1627 #else
Note:
See TracChangeset
for help on using the changeset viewer.