Lines Matching defs:devstat
3573 struct ce_stats *devstat = &adapter->stats;
3575 stats->rx_errors = devstat->rx_length_errs +
3576 devstat->rx_align_errs +
3577 devstat->rx_crc_errs +
3578 devstat->rx_code_violations +
3579 devstat->rx_other_errs;
3580 stats->tx_errors = devstat->tx_max_pkt_errs;
3581 stats->multicast = devstat->multicast_pkts_rcvd;
3582 stats->collisions = devstat->tx_collisions;
3584 stats->rx_length_errors = devstat->rx_length_errs;
3585 stats->rx_over_errors = devstat->rx_overflows;
3586 stats->rx_crc_errors = devstat->rx_crc_errs;
3587 stats->rx_dropped = devstat->rcvd_pkts_dropped;
3590 /* stats->rx_frame_errors = devstat->; */
3591 /* stats->rx_fifo_errors = devstat->; */
3592 /* stats->rx_missed_errors = devstat->; */
3594 /* stats->tx_aborted_errors = devstat->; */
3595 /* stats->tx_carrier_errors = devstat->; */
3596 /* stats->tx_fifo_errors = devstat->; */
3597 /* stats->tx_heartbeat_errors = devstat->; */
3598 /* stats->tx_window_errors = devstat->; */