Changeset 70130 in vbox for trunk/src/VBox
- Timestamp:
- Dec 14, 2017 2:27:55 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119687
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r70108 r70130 921 921 PCFGMNODE pCPUM; 922 922 InsertConfigNode(pRoot, "CPUM", &pCPUM); 923 PCFGMNODE pIsaExts; 924 InsertConfigNode(pCPUM, "IsaExts", &pIsaExts); 923 925 924 926 /* Host CPUID leaf overrides. */ … … 954 956 { 955 957 LogRel(("Enabling CMPXCHG16B for Windows 8.1 / 2k12 or newer guests\n")); 956 InsertConfigInteger(p CPUM, "CMPXCHG16B", true);958 InsertConfigInteger(pIsaExts, "CMPXCHG16B", true); 957 959 } 958 960 … … 961 963 /* Expose extended MWAIT features to Mac OS X guests. */ 962 964 LogRel(("Using MWAIT extensions\n")); 963 InsertConfigInteger(p CPUM, "MWaitExtensions", true);965 InsertConfigInteger(pIsaExts, "MWaitExtensions", true); 964 966 965 967 /* Fake the CPU family/model so the guest works. This is partly
Note:
See TracChangeset
for help on using the changeset viewer.