Changeset 45971 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- May 9, 2013 7:46:52 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85623
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r45926 r45971 1733 1733 fNestedPaging(true), 1734 1734 fVPID(true), 1735 fUnrestrictedExecution(true), 1735 1736 fHardwareVirtForce(false), 1736 1737 fSyntheticCpu(false), … … 1803 1804 && (fLargePages == h.fLargePages) 1804 1805 && (fVPID == h.fVPID) 1806 && (fUnrestrictedExecution == h.fUnrestrictedExecution) 1805 1807 && (fHardwareVirtForce == h.fHardwareVirtForce) 1806 1808 && (fSyntheticCpu == h.fSyntheticCpu) … … 2535 2537 if ((pelmCPUChild = pelmHwChild->findChildElement("HardwareVirtExVPID"))) 2536 2538 pelmCPUChild->getAttributeValue("enabled", hw.fVPID); 2539 if ((pelmCPUChild = pelmHwChild->findChildElement("HardwareVirtExUX"))) 2540 pelmCPUChild->getAttributeValue("enabled", hw.fUnrestrictedExecution); 2537 2541 if ((pelmCPUChild = pelmHwChild->findChildElement("HardwareVirtForce"))) 2538 2542 pelmCPUChild->getAttributeValue("enabled", hw.fHardwareVirtForce); … … 3733 3737 pelmCPU->createChild("HardwareVirtExNestedPaging")->setAttribute("enabled", hw.fNestedPaging); 3734 3738 pelmCPU->createChild("HardwareVirtExVPID")->setAttribute("enabled", hw.fVPID); 3739 pelmCPU->createChild("HardwareVirtExUX")->setAttribute("enabled", hw.fUnrestrictedExecution); 3735 3740 pelmCPU->createChild("PAE")->setAttribute("enabled", hw.fPAE); 3736 3741 if (m->sv >= SettingsVersion_v1_14 && hw.enmLongMode != Hardware::LongMode_Legacy)
Note:
See TracChangeset
for help on using the changeset viewer.