Changeset 70606 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Jan 16, 2018 7:05:36 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120319
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo
-
old new 8 8 /branches/VBox-5.0:104445,104938,104943,104950,104952-104953,104987-104988,104990,106453 9 9 /branches/VBox-5.1:112367,115992,116543,116550,116568,116573 10 /branches/VBox-5.2:120083,120099,120213,120221,120239 10 11 /branches/andy/draganddrop:90781-91268 11 12 /branches/andy/guestctrl20:78916,78930
-
- Property svn:mergeinfo
-
trunk/src/VBox
- Property svn:mergeinfo
-
old new 8 8 /branches/VBox-5.0/src/VBox:104938,104943,104950,104987-104988,104990,106453 9 9 /branches/VBox-5.1/src/VBox:112367,116543,116550,116568,116573 10 /branches/VBox-5.2/src/VBox:120083,120099,120213,120221,120239 10 11 /branches/andy/draganddrop/src/VBox:90781-91268 11 12 /branches/andy/guestctrl20/src/VBox:78916,78930
-
- Property svn:mergeinfo
-
trunk/src/VBox/Main/xml/Settings.cpp
r69070 r70606 2778 2778 fAPIC(true), 2779 2779 fX2APIC(false), 2780 fIBPBOnVMExit(false), 2781 fIBPBOnVMEntry(false), 2780 2782 enmLongMode(HC_ARCH_BITS == 64 ? Hardware::LongMode_Enabled : Hardware::LongMode_Disabled), 2781 2783 cCPUs(1), … … 2931 2933 && fAPIC == h.fAPIC 2932 2934 && fX2APIC == h.fX2APIC 2935 && fIBPBOnVMExit == h.fIBPBOnVMExit 2936 && fIBPBOnVMEntry == h.fIBPBOnVMEntry 2933 2937 && cCPUs == h.cCPUs 2934 2938 && fCpuHotPlug == h.fCpuHotPlug … … 3933 3937 if (hw.fX2APIC) 3934 3938 hw.fAPIC = true; 3939 pelmCPUChild = pelmHwChild->findChildElement("IBPBOn"); 3940 if (pelmCPUChild) 3941 { 3942 pelmCPUChild->getAttributeValue("vmexit", hw.fIBPBOnVMExit); 3943 pelmCPUChild->getAttributeValue("vmentry", hw.fIBPBOnVMEntry); 3944 } 3935 3945 3936 3946 if ((pelmCPUChild = pelmHwChild->findChildElement("CpuIdTree"))) … … 5259 5269 if (m->sv >= SettingsVersion_v1_16) 5260 5270 { 5271 if (hw.fIBPBOnVMEntry || hw.fIBPBOnVMExit) 5272 { 5273 xml::ElementNode *pelmChild = pelmCPU->createChild("IBPBOn"); 5274 if (hw.fIBPBOnVMExit) 5275 pelmChild->setAttribute("vmexit", hw.fIBPBOnVMExit); 5276 if (hw.fIBPBOnVMEntry) 5277 pelmChild->setAttribute("vmentry", hw.fIBPBOnVMEntry); 5278 } 5261 5279 } 5262 5280 if (m->sv >= SettingsVersion_v1_14 && hw.enmLongMode != Hardware::LongMode_Legacy) … … 6930 6948 || hardwareMachine.biosSettings.apicMode != APICMode_APIC 6931 6949 || !hardwareMachine.fAPIC 6932 || hardwareMachine.fX2APIC) 6950 || hardwareMachine.fX2APIC 6951 || hardwareMachine.fIBPBOnVMExit 6952 || hardwareMachine.fIBPBOnVMEntry) 6933 6953 { 6934 6954 m->sv = SettingsVersion_v1_16;
Note:
See TracChangeset
for help on using the changeset viewer.