- Timestamp:
- Jan 20, 2010 10:16:55 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56752
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r25825 r25920 1104 1104 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_NXE); 1105 1105 } 1106 else 1107 /* Turn on NXE if PAE has been enabled. */ 1108 if (CPUMGetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE)) 1109 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_NXE); 1110 1106 1111 LogRel((pVM->hwaccm.s.fAllow64BitGuests 1107 1112 ? "HWACCM: 32-bit and 64-bit guests supported.\n" … … 1249 1254 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_LAHF); 1250 1255 } 1256 else 1257 /* Turn on NXE if PAE has been enabled. */ 1258 if (CPUMGetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE)) 1259 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_NXE); 1251 1260 #endif 1261 1252 1262 LogRel((pVM->hwaccm.s.fAllow64BitGuests 1253 1263 ? "HWACCM: 32-bit and 64-bit guest supported.\n"
Note:
See TracChangeset
for help on using the changeset viewer.