Changeset 70262 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Dec 21, 2017 8:32:29 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r70260 r70262 859 859 860 860 /* No LBR virtualization. */ 861 pVmcb->ctrl.u64LBRVirt = 0;862 863 /* Initially set all VMCB clean bits to 0indicating that everything should be loaded from the VMCB in memory. */864 pVmcb->ctrl.u32VmcbCleanBits = 0;861 Assert(pVmcb->ctrl.u1LbrVirt == 0); 862 863 /* Initially all VMCB clean bits MBZ indicating that everything should be loaded from the VMCB in memory. */ 864 Assert(pVmcb->ctrl.u32VmcbCleanBits == 0); 865 865 866 866 /* The host ASID MBZ, for the guest start with 1. */ … … 3565 3565 3566 3566 Log4(("ctrl.u64NestedPagingCR3 %#RX64\n", pVmcb->ctrl.u64NestedPagingCR3)); 3567 Log4(("ctrl.u 64LBRVirt %#RX64\n", pVmcb->ctrl.u64LBRVirt));3567 Log4(("ctrl.u1Lbrvirt %RTbool\n", pVmcb->ctrl.u1LbrVirt)); 3568 3568 3569 3569 Log4(("guest.CS.u16Sel %RTsel\n", pVmcb->guest.CS.u16Sel));
Note:
See TracChangeset
for help on using the changeset viewer.