// hbapiwmi.h
typedef struct _MSFC_HBAPortStatistics {
LONGLONG SecondsSinceLastReset;
LONGLONG TxFrames;
LONGLONG TxWords;
LONGLONG RxFrames;
LONGLONG RxWords;
LONGLONG LIPCount;
LONGLONG NOSCount;
LONGLONG ErrorFrames;
LONGLONG DumpedFrames;
LONGLONG LinkFailureCount;
LONGLONG LossOfSyncCount;
LONGLONG LossOfSignalCount;
LONGLONG PrimitiveSeqProtocolErrCount;
LONGLONG InvalidTxWordCount;
LONGLONG InvalidCRCCount;
} MSFC_HBAPortStatistics, *PMSFC_HBAPortStatistics;
View the official Windows Driver Kit DDI referenceNo description available.
The MSFC_HBAPortStatistics structure contains statistics information about a port.
SecondsSinceLastResetContains the number of seconds since the statistics were last reset.
TxFramesContains the number of total transmitted fibre channel frames across all protocols and classes.
TxWordsContains the number of total transmitted fibre channel words across all protocols and classes.
RxFramesContains the number of received fibre channel frames across all protocols and classes.
RxWordsContains the number of received fibre channel words across all protocols and classes.
LIPCountContains the number of loop initialization primitive sequence (LIP) events that have occurred on a arbitrated loop.
NOSCountContains the number of nonoperational state primitive sequence (NOS) events that have occurred on the switched fabric.
ErrorFramesContains the number of frames that have been received in error.
DumpedFramesContains the number of frames that were lost due to a lack of host buffers available.
LinkFailureCountContains the link failure count.
LossOfSyncCountContains the loss of synchronization count.
LossOfSignalCountContains the loss of signal count.
PrimitiveSeqProtocolErrCountContains the primitive sequence protocol error count.
InvalidTxWordCountContains a count of the number of invalid transmissions.
InvalidCRCCountContains a count of the number frames with invalid cyclic redundancy checksums.
MSFC_HBAPortStatistics WMI Class