Changeset 2699 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- May 17, 2007 3:18:06 PM (18 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r2556 r2699 821 821 pVM->hwaccm.s.Event.errCode = 0; 822 822 } 823 STAM_COUNTER_INC(&pVM->hwaccm.s.pStatExitReason [exitCode & MASK_EXITREASON_STAT]);823 STAM_COUNTER_INC(&pVM->hwaccm.s.pStatExitReasonR0[exitCode & MASK_EXITREASON_STAT]); 824 824 825 825 /* Deal with the reason of the VM-exit. */ -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r2556 r2699 1105 1105 /* Investigate why there was a VM-exit. */ 1106 1106 rc = VMXReadVMCS(VMX_VMCS_RO_EXIT_REASON, &exitReason); 1107 STAM_COUNTER_INC(&pVM->hwaccm.s.pStatExitReason [exitReason & MASK_EXITREASON_STAT]);1107 STAM_COUNTER_INC(&pVM->hwaccm.s.pStatExitReasonR0[exitReason & MASK_EXITREASON_STAT]); 1108 1108 1109 1109 exitReason &= 0xffff; /* bit 0-15 contain the exit code. */
Note:
See TracChangeset
for help on using the changeset viewer.