// mpiowmi.h
typedef struct _MPIO_PATH_HEALTH_CLASS {
ULONGLONG PathId;
ULONGLONG NumberReads;
ULONGLONG NumberWrites;
ULONGLONG NumberBytesRead;
ULONGLONG NumberBytesWritten;
ULONGLONG NumberRetries;
ULONGLONG NumberIoErrors;
ULONGLONG CreateTime;
ULONGLONG FailTime;
BOOLEAN PathOffline;
UCHAR NumberReadsWrap;
UCHAR NumberWritesWrap;
UCHAR NumberBytesReadWrap;
UCHAR NumberBytesWrittenWrap;
UCHAR OutstandingRequests;
UCHAR Pad[2];
} MPIO_PATH_HEALTH_CLASS, *PMPIO_PATH_HEALTH_CLASS;
View the official Windows Driver Kit DDI referenceNo description available.
The MPIO_PATH_HEALTH_CLASS structure represents the health information for a path.
PathIdAn unsigned 64-bitfield that represents an identifier that is assigned to a particular path.
NumberReadsAn unsigned 64-bitfield that specifies the number of read requests that are serviced by the specified path identifier.
NumberWritesAn unsigned 64-bitfield that specifies the number of write requests that are serviced by the specified path identifier.
NumberBytesReadAn unsigned 64-bitfield that specifies the total number of bytes that are read through the specified path identifier.
NumberBytesWrittenAn unsigned 64-bitfield that specifies the total number of bytes that are written through the specified path identifier.
NumberRetriesAn unsigned 64-bitfield that specifies the total number of retries by using the specified path identifier.
NumberIoErrorsAn unsigned 64-bitfield that specifies the total number of I/O errors that are encountered through the specified path identifier.
CreateTimeA 64-bit integer that specifies the system time when this instance was created and exposed.
FailTimeA 64-bit integer that specifies the system time when the path that is associated with this path ID was removed.
PathOfflineA Boolean field that indicates whether the path that is associated with this path ID is removed.
NumberReadsWrapAn unsigned character field that specifies the total number of times that the NumberReads parameter has rolled around to zero.
NumberWritesWrapAn unsigned character field that specifies the total number of times that the NumberWrites parameter has rolled around to zero.
NumberBytesReadWrapAn unsigned character field that specifies the total number of times the NumberBytesRead parameter has rolled around to zero.
NumberBytesWrittenWrapAn unsigned character field that specifies the total number of times that the NumberBytesWritten parameter has rolled around to zero.
OutstandingRequestsAn unsigned character field that specifies the total number of outstanding requests.
PadShould be zero.