VirtualBox

儲存庫 vbox 的更動 12020


忽略:
時間撮記:
2008-9-3 上午08:51:55 (16 年 以前)
作者:
vboxsync
訊息:

Nested paging support activated; default changed to false

位置:
trunk/src/VBox
檔案:
修改 4 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Main/MachineImpl.cpp

    r11832 r12020  
    190190    mMonitorCount = 1;
    191191    mHWVirtExEnabled = TSBool_False;
    192     mHWVirtExNestedPagingEnabled = true;
     192    mHWVirtExNestedPagingEnabled = false;
    193193    mPAEEnabled = false;
    194194
     
    47524752        /* default value in case the node is not there */
    47534753        mHWData->mHWVirtExEnabled             = TSBool_Default;
    4754         mHWData->mHWVirtExNestedPagingEnabled = true;
     4754        mHWData->mHWVirtExNestedPagingEnabled = false;
    47554755        mHWData->mPAEEnabled                  = false;
    47564756
     
    47694769                    mHWData->mHWVirtExEnabled = TSBool_Default;
    47704770            }
    4771             /* HardwareVirtExNestedPaging (optional, default is true) */
     4771            /* HardwareVirtExNestedPaging (optional, default is false) */
    47724772            Key HWVirtExNestedPagingNode = cpuNode.findKey ("HardwareVirtExNestedPaging");
    47734773            if (!HWVirtExNestedPagingNode.isNull())
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r11992 r12020  
    28372837    </attribute>
    28382838
    2839     <attribute name="HWVirtExNestedPagingEnabled" type="boolean" default="true">
     2839    <attribute name="HWVirtExNestedPagingEnabled" type="boolean" default="false">
    28402840      <desc>
    28412841        This setting determines whether VirtualBox will try to make use of
  • trunk/src/VBox/Main/xml/VirtualBox-settings-common.xsd

    r11982 r12020  
    414414
    415415<xsd:complexType name="THWVirtExNestedPagingType">
    416   <xsd:attribute name="enabled" type="xsd:boolean" default="true"/>
     416  <xsd:attribute name="enabled" type="xsd:boolean" default="false"/>
    417417</xsd:complexType>
    418418
  • trunk/src/VBox/VMM/HWACCM.cpp

    r11792 r12020  
    189189     * Check CFGM options.
    190190     */
    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);
     191    /* Nested paging: disabled by default. */
     192    rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "EnableNestedPaging", &pVM->hwaccm.s.fAllowNestedPaging, false);
    194193    AssertRC(rc);
    195 #endif
    196194
    197195    /* HWACCM support must be explicitely enabled in the configuration file. */
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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