- Timestamp:
- Oct 1, 2009 11:48:02 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 53086
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvSCSI.cpp
r23356 r23472 852 852 853 853 /* Register statistics counter. */ 854 /** @odo r=aeichner: Find a way to put the instance number of the attached controller device 855 * when we support more than one controller of the same type. At the moment we have the 856 * 0 hardcoded. */ 854 857 PDMDrvHlpSTAMRegisterF(pDrvIns, &pThis->StatBytesRead, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_BYTES, 855 "Amount of data read.", "/Devices/SCSI /%d/ReadBytes", pDrvIns->iInstance);858 "Amount of data read.", "/Devices/SCSI0/%d/ReadBytes", pDrvIns->iInstance); 856 859 PDMDrvHlpSTAMRegisterF(pDrvIns, &pThis->StatBytesWritten, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_BYTES, 857 "Amount of data written.", "/Devices/SCSI /%d/WrittenBytes", pDrvIns->iInstance);860 "Amount of data written.", "/Devices/SCSI0/%d/WrittenBytes", pDrvIns->iInstance); 858 861 859 862 /* Create I/O thread. */
Note:
See TracChangeset
for help on using the changeset viewer.