VirtualBox

Changeset 33731 in vbox


Ignore:
Timestamp:
Nov 3, 2010 3:57:50 PM (14 years ago)
Author:
vboxsync
Message:

Disable large page support by default for Linux hosts until further notice

Location:
trunk/src/VBox/Main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/MachineImpl.cpp

    r33709 r33731  
    153153    mHWVirtExEnabled = true;
    154154    mHWVirtExNestedPagingEnabled = true;
    155 #if HC_ARCH_BITS == 64
     155#if HC_ARCH_BITS == 64 && !defined(RT_OS_LINUX)
    156156    mHWVirtExLargePagesEnabled = true;
    157157#else
  • trunk/src/VBox/Main/xml/Settings.cpp

    r33661 r33731  
    16201620
    16211621    /* 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)
    16231623     * - 32 bits host -> false
    16241624     */
    1625 #if HC_ARCH_BITS == 64
     1625#if HC_ARCH_BITS == 64 && !defined(RT_OS_LINUX)
    16261626    fLargePages = true;
    16271627#else
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette