Changeset 79379 in vbox
- Timestamp:
- Jun 27, 2019 8:08:39 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r79376 r79379 3602 3602 Assert(uCr3TargetCount <= VMX_V_CR3_TARGET_COUNT); 3603 3603 3604 /* If the CR3-target count is 0, we must alwayscause a VM-exit. */3604 /* If the CR3-target count is 0, cause a VM-exit. */ 3605 3605 if (uCr3TargetCount == 0) 3606 3606 return true; 3607 3607 3608 /* If the CR3 being written doesn't match esany of the target values, cause a VM-exit. */3608 /* If the CR3 being written doesn't match any of the target values, cause a VM-exit. */ 3609 3609 AssertCompile(VMX_V_CR3_TARGET_COUNT == 4); 3610 3610 if ( uNewCr3 != pVmcs->u64Cr3Target0.u
Note:
See TracChangeset
for help on using the changeset viewer.