Changeset 93337 in vbox
- Timestamp:
- Jan 19, 2022 5:46:03 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r93292 r93337 1480 1480 } 1481 1481 1482 /* CR0 Fixed-0 . */1482 /* CR0 Fixed-0 (we report this fixed value regardless of whether UX is supported as it does on real hardware). */ 1483 1483 pGuestVmxMsrs->u64Cr0Fixed0 = VMX_V_CR0_FIXED0; 1484 1484 … … 1490 1490 * CPU features and/or micro-architecture/generation. Why? Ask Intel. 1491 1491 */ 1492 uint64_t const uHostMsr = fIsNstGstHwExecAllowed ? pHostVmxMsrs->u64Cr0Fixed1 : 0xffffffff;1492 uint64_t const uHostMsr = fIsNstGstHwExecAllowed ? pHostVmxMsrs->u64Cr0Fixed1 : VMX_V_CR0_FIXED1; 1493 1493 pGuestVmxMsrs->u64Cr0Fixed1 = uHostMsr | pGuestVmxMsrs->u64Cr0Fixed0; /* Make sure the CR0 MB1 bits are not clear. */ 1494 1494 }
Note:
See TracChangeset
for help on using the changeset viewer.

