Changeset 13251 in vbox
- Timestamp:
- Oct 14, 2008 12:07:13 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37862
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r13221 r13251 159 159 STAM_REG(pVM, &pVM->hwaccm.s.StatNoFlushTLBWorldSwitch, STAMTYPE_COUNTER, "/HWACCM/Flush/TLB/Skipped", STAMUNIT_OCCURENCES, "Nr of occurances"); 160 160 STAM_REG(pVM, &pVM->hwaccm.s.StatFlushASID, STAMTYPE_COUNTER, "/HWACCM/Flush/TLB/ASID", STAMUNIT_OCCURENCES, "Nr of occurances"); 161 STAM_REG(pVM, &pVM->hwaccm.s.StatFlushTLBInvlpga, STAMTYPE_COUNTER, "/HWACCM/Flush/TLB/PhysInvlpg", STAMUNIT_OCCURENCES, "Nr of occurances"); 161 162 162 163 STAM_REG(pVM, &pVM->hwaccm.s.StatTSCOffset, STAMTYPE_COUNTER, "/HWACCM/TSC/Offset", STAMUNIT_OCCURENCES, "Nr of occurances"); -
trunk/src/VBox/VMM/HWACCMInternal.h
r13221 r13251 498 498 STAMCOUNTER StatFlushTLBCRxChange; 499 499 STAMCOUNTER StatFlushASID; 500 STAMCOUNTER StatFlushTLBInvlpga; 500 501 501 502 STAMCOUNTER StatSwitchGuestIrq; -
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r13250 r13251 2220 2220 Assert(pVM->hwaccm.s.fNestedPaging); 2221 2221 /* invlpga only invalidates TLB entries for guest virtual addresses; we have no choice but to force a TLB flush here. */ 2222 pVM->hwaccm.s.fForceTLBFlush = true; 2222 pVM->hwaccm.s.fForceTLBFlush = true; 2223 STAM_COUNTER_INC(&pVM->hwaccm.s.StatFlushTLBInvlpga); 2223 2224 return VINF_SUCCESS; 2224 2225 }
Note:
See TracChangeset
for help on using the changeset viewer.