// wdm.h
typedef struct _CLS_IO_STATISTICS {
CLS_IO_STATISTICS_HEADER hdrIoStats;
ULONGLONG cFlush;
ULONGLONG cbFlush;
ULONGLONG cMetaFlush;
ULONGLONG cbMetaFlush;
} CLS_IO_STATISTICS, *PCLS_IO_STATISTICS, PPCLS_IO_STATISTICS;
View the official Windows Driver Kit DDI referenceNo description available.
The CLFS_IO_STATISTICS structure holds I/O statistics data for a Common Log File System (CLFS) log.
hdrIoStatsA CLFS_IO_STATISTICS_HEADER structure that holds header information for the set of statistics.
cFlushThe number of data flushes.
cbFlushThe number of bytes of data flushed.
cMetaFlushThe number of metadata flushes.
cbMetaFlushThe number of bytes of metadata flushed.