Changeset 23469 in vbox
- Timestamp:
- Oct 1, 2009 11:44:07 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r23467 r23469 6527 6527 /* Register statistics counter. */ 6528 6528 PDMDevHlpSTAMRegisterF(pDevIns, &pAhciPort->StatDMA, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, 6529 "Number of DMA transfers.", "/Devices/SATA /Port%d/DMA", i);6529 "Number of DMA transfers.", "/Devices/SATA%d/Port%d/DMA", iInstance, i); 6530 6530 PDMDevHlpSTAMRegisterF(pDevIns, &pAhciPort->StatBytesRead, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_BYTES, 6531 "Amount of data read.", "/Devices/SATA /Port%d/ReadBytes", i);6531 "Amount of data read.", "/Devices/SATA%d/Port%d/ReadBytes", iInstance, i); 6532 6532 PDMDevHlpSTAMRegisterF(pDevIns, &pAhciPort->StatBytesWritten, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_BYTES, 6533 "Amount of data written.", "/Devices/SATA /Port%d/WrittenBytes", i);6533 "Amount of data written.", "/Devices/SATA%d/Port%d/WrittenBytes", iInstance, i); 6534 6534 PDMDevHlpSTAMRegisterF(pDevIns, &pAhciPort->StatIORequestsPerSecond, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, 6535 "Number of processed I/O requests per second.", "/Devices/SATA /Port%d/IORequestsPerSecond", i);6535 "Number of processed I/O requests per second.", "/Devices/SATA%d/Port%d/IORequestsPerSecond", iInstance, i); 6536 6536 #ifdef VBOX_WITH_STATISTICS 6537 6537 PDMDevHlpSTAMRegisterF(pDevIns, &pAhciPort->StatProfileProcessTime, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_NS_PER_CALL, 6538 "Amount of time to process one request.", "/Devices/SATA /Port%d/ProfileProcessTime", i);6538 "Amount of time to process one request.", "/Devices/SATA%d/Port%d/ProfileProcessTime", iInstance, i); 6539 6539 PDMDevHlpSTAMRegisterF(pDevIns, &pAhciPort->StatProfileMapIntoR3, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_NS_PER_CALL, 6540 "Amount of time to map the guest buffers into R3.", "/Devices/SATA /Port%d/ProfileMapIntoR3", i);6540 "Amount of time to map the guest buffers into R3.", "/Devices/SATA%d/Port%d/ProfileMapIntoR3", iInstance, i); 6541 6541 PDMDevHlpSTAMRegisterF(pDevIns, &pAhciPort->StatProfileReadWrite, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_NS_PER_CALL, 6542 "Amount of time for the read/write operation to complete.", "/Devices/SATA /Port%d/ProfileReadWrite", i);6542 "Amount of time for the read/write operation to complete.", "/Devices/SATA%d/Port%d/ProfileReadWrite", iInstance, i); 6543 6543 PDMDevHlpSTAMRegisterF(pDevIns, &pAhciPort->StatProfileDestroyScatterGatherList, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_NS_PER_CALL, 6544 "Amount of time to destroy the scatter gather list and free associated ressources.", "/Devices/SATA /Port%d/ProfileDestroyScatterGatherList", i);6544 "Amount of time to destroy the scatter gather list and free associated ressources.", "/Devices/SATA%d/Port%d/ProfileDestroyScatterGatherList", iInstance, i); 6545 6545 #endif 6546 6546
Note:
See TracChangeset
for help on using the changeset viewer.