Changeset 31818 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Aug 20, 2010 1:06:33 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65018
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r31742 r31818 1534 1534 fLargePages(false), 1535 1535 fVPID(true), 1536 fHardwareVirtForce(false), 1536 1537 fSyntheticCpu(false), 1537 1538 fPAE(false), … … 1580 1581 && (fLargePages == h.fLargePages) 1581 1582 && (fVPID == h.fVPID) 1583 && (fHardwareVirtForce == h.fHardwareVirtForce) 1582 1584 && (fSyntheticCpu == h.fSyntheticCpu) 1583 1585 && (fPAE == h.fPAE) … … 2265 2267 if ((pelmCPUChild = pelmHwChild->findChildElement("HardwareVirtExVPID"))) 2266 2268 pelmCPUChild->getAttributeValue("enabled", hw.fVPID); 2269 if ((pelmCPUChild = pelmHwChild->findChildElement("HardwareVirtForce"))) 2270 pelmCPUChild->getAttributeValue("enabled", hw.fHardwareVirtForce); 2267 2271 2268 2272 if (!(pelmCPUChild = pelmHwChild->findChildElement("PAE"))) … … 3177 3181 if (hw.fLargePages) 3178 3182 pelmCPU->createChild("HardwareVirtExLargePages")->setAttribute("enabled", hw.fLargePages); 3183 3184 if (m->sv >= SettingsVersion_v1_9) 3185 pelmCPU->createChild("HardwareVirtForce")->setAttribute("enabled", hw.fHardwareVirtForce); 3179 3186 3180 3187 if (m->sv >= SettingsVersion_v1_10)
Note:
See TracChangeset
for help on using the changeset viewer.