Changeset 89868 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jun 23, 2021 6:02:11 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145325
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/Global.cpp
r89604 r89868 29 29 /* NOTE1: we assume that unknown is always the first two entries! 30 30 * NOTE2: please use powers of 2 when specifying the size of harddisks since 31 * '2GB' looks better than '1.95GB' (= 2000MB) */ 31 * '2GB' looks better than '1.95GB' (= 2000MB) 32 * NOTE3: if you add new guest OS types please check if the code in 33 * Machine::getEffectiveParavirtProvider and Console::i_configConstructorInner 34 * are still covering the relevant cases. */ 32 35 { "Other", "Other", "Other", "Other/Unknown", 33 36 VBOXOSTYPE_Unknown, VBOXOSHINT_NONE, -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r89852 r89868 1032 1032 LogRel(("Limiting CPUID leaf count for NT4 guests\n")); 1033 1033 InsertConfigInteger(pCPUM, "NT4LeafLimit", true); 1034 }1035 1036 /* Expose CMPXCHG16B. Currently a hack. */1037 if ( osTypeId == "Windows81_64"1038 || osTypeId == "Windows2012_64"1039 || osTypeId == "Windows10_64"1040 || osTypeId == "Windows2016_64")1041 {1042 LogRel(("Enabling CMPXCHG16B for Windows 8.1 / 2k12 or newer guests\n"));1043 InsertConfigInteger(pIsaExts, "CMPXCHG16B", true);1044 1034 } 1045 1035 -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r89718 r89868 1376 1376 || mUserData->s.strOsType == "WindowsVista" 1377 1377 || mUserData->s.strOsType == "WindowsVista_64" 1378 || ( ( mUserData->s.strOsType.startsWith("Windows202") 1379 || mUserData->s.strOsType.startsWith("Windows201")) 1380 && mUserData->s.strOsType.endsWith("_64")) 1378 1381 || mUserData->s.strOsType == "Windows2012" 1379 1382 || mUserData->s.strOsType == "Windows2012_64"
Note:
See TracChangeset
for help on using the changeset viewer.