Lines Matching defs:alx_hw_stats

392 struct alx_hw_stats {  struct
394 u64 rx_ok; /* good RX packets */
395 u64 rx_bcast; /* good RX broadcast packets */
396 u64 rx_mcast; /* good RX multicast packets */
397 u64 rx_pause; /* RX pause frames */
398 u64 rx_ctrl; /* RX control packets other than pause frames */
399 u64 rx_fcs_err; /* RX packets with bad FCS */
400 u64 rx_len_err; /* RX packets with length != actual size */
401 u64 rx_byte_cnt; /* good bytes received. FCS is NOT included */
402 u64 rx_runt; /* RX packets < 64 bytes with good FCS */
403 u64 rx_frag; /* RX packets < 64 bytes with bad FCS */
404 u64 rx_sz_64B; /* 64 byte RX packets */
405 u64 rx_sz_127B; /* 65-127 byte RX packets */
406 u64 rx_sz_255B; /* 128-255 byte RX packets */
407 u64 rx_sz_511B; /* 256-511 byte RX packets */
408 u64 rx_sz_1023B; /* 512-1023 byte RX packets */
409 u64 rx_sz_1518B; /* 1024-1518 byte RX packets */
410 u64 rx_sz_max; /* 1519 byte to MTU RX packets */
411 u64 rx_ov_sz; /* truncated RX packets, size > MTU */
412 u64 rx_ov_rxf; /* frames dropped due to RX FIFO overflow */
413 u64 rx_ov_rrd; /* frames dropped due to RRD overflow */
414 u64 rx_align_err; /* alignment errors */
415 u64 rx_bc_byte_cnt; /* RX broadcast bytes, excluding FCS */
416 u64 rx_mc_byte_cnt; /* RX multicast bytes, excluding FCS */
417 u64 rx_err_addr; /* packets dropped due to address filtering */
420 u64 tx_ok; /* good TX packets */
421 u64 tx_bcast; /* good TX broadcast packets */
422 u64 tx_mcast; /* good TX multicast packets */
423 u64 tx_pause; /* TX pause frames */
424 u64 tx_exc_defer; /* TX packets deferred excessively */
425 u64 tx_ctrl; /* TX control frames, excluding pause frames */
426 u64 tx_defer; /* TX packets deferred */
427 u64 tx_byte_cnt; /* bytes transmitted, FCS is NOT included */
428 u64 tx_sz_64B; /* 64 byte TX packets */
429 u64 tx_sz_127B; /* 65-127 byte TX packets */
430 u64 tx_sz_255B; /* 128-255 byte TX packets */
431 u64 tx_sz_511B; /* 256-511 byte TX packets */
432 u64 tx_sz_1023B; /* 512-1023 byte TX packets */
433 u64 tx_sz_1518B; /* 1024-1518 byte TX packets */
434 u64 tx_sz_max; /* 1519 byte to MTU TX packets */
435 u64 tx_single_col; /* packets TX after a single collision */
436 u64 tx_multi_col; /* packets TX after multiple collisions */
437 u64 tx_late_col; /* TX packets with late collisions */
438 u64 tx_abort_col; /* TX packets aborted w/excessive collisions */
439 u64 tx_underrun; /* TX packets aborted due to TX FIFO underrun
442 u64 tx_trd_eop; /* reads beyond the EOP into the next frame
445 u64 tx_len_err; /* TX packets where length != actual size */
446 u64 tx_trunc; /* TX packets truncated due to size > MTU */
447 u64 tx_bc_byte_cnt; /* broadcast bytes transmitted, excluding FCS */
448 u64 tx_mc_byte_cnt; /* multicast bytes transmitted, excluding FCS */
449 u64 update;