Changeset 81693 in vbox for trunk/src/VBox/Devices/VMMDev
- Timestamp:
- Nov 6, 2019 1:11:29 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r81643 r81693 4766 4766 */ 4767 4767 PDMDevHlpSTAMRegisterF(pDevIns, &pThis->StatMemBalloonChunks, STAMTYPE_U32, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, 4768 "Memory balloon size", " /Devices/VMMDev/BalloonChunks");4768 "Memory balloon size", "BalloonChunks"); 4769 4769 PDMDevHlpSTAMRegisterF(pDevIns, &pThis->StatFastIrqAckR3, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, 4770 "Fast IRQ acknowledgments handled in ring-3.", " /Devices/VMMDev/FastIrqAckR3");4770 "Fast IRQ acknowledgments handled in ring-3.", "FastIrqAckR3"); 4771 4771 PDMDevHlpSTAMRegisterF(pDevIns, &pThis->StatFastIrqAckRZ, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, 4772 "Fast IRQ acknowledgments handled in ring-0 or raw-mode.", " /Devices/VMMDev/FastIrqAckRZ");4772 "Fast IRQ acknowledgments handled in ring-0 or raw-mode.", "FastIrqAckRZ"); 4773 4773 PDMDevHlpSTAMRegisterF(pDevIns, &pThis->StatSlowIrqAck, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, 4774 "Slow IRQ acknowledgments (old style).", " /Devices/VMMDev/SlowIrqAck");4774 "Slow IRQ acknowledgments (old style).", "SlowIrqAck"); 4775 4775 PDMDevHlpSTAMRegisterF(pDevIns, &pThisCC->StatReqBufAllocs, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, 4776 "Times a larger request buffer was required.", " /Devices/VMMDev/LargeReqBufAllocs");4776 "Times a larger request buffer was required.", "LargeReqBufAllocs"); 4777 4777 #ifdef VBOX_WITH_HGCM 4778 4778 PDMDevHlpSTAMRegisterF(pDevIns, &pThisCC->StatHgcmCmdArrival, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, … … 4785 4785 "Times the allocation cache could not be used.", "/HGCM/LargeCmdAllocs"); 4786 4786 PDMDevHlpSTAMRegisterF(pDevIns, &pThisCC->StatHgcmFailedPageListLocking,STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, 4787 "Times no-bounce page list locking failed.", "/HGCM/FailedPageListLocking");4787 "Times no-bounce page list locking failed.", "/HGCM/FailedPageListLocking"); 4788 4788 #endif 4789 4789
Note:
See TracChangeset
for help on using the changeset viewer.