Lines Matching refs:devstat
3610 struct ce_stats *devstat = &adapter->stats;
3612 stats->rx_errors = devstat->rx_length_errs +
3613 devstat->rx_align_errs +
3614 devstat->rx_crc_errs +
3615 devstat->rx_code_violations +
3616 devstat->rx_other_errs;
3617 stats->tx_errors = devstat->tx_max_pkt_errs;
3618 stats->multicast = devstat->multicast_pkts_rcvd;
3619 stats->collisions = devstat->tx_collisions;
3621 stats->rx_length_errors = devstat->rx_length_errs;
3622 stats->rx_over_errors = devstat->rx_overflows;
3623 stats->rx_crc_errors = devstat->rx_crc_errs;
3624 stats->rx_dropped = devstat->rcvd_pkts_dropped;
3627 /* stats->rx_frame_errors = devstat->; */
3628 /* stats->rx_fifo_errors = devstat->; */
3629 /* stats->rx_missed_errors = devstat->; */
3631 /* stats->tx_aborted_errors = devstat->; */
3632 /* stats->tx_carrier_errors = devstat->; */
3633 /* stats->tx_fifo_errors = devstat->; */
3634 /* stats->tx_heartbeat_errors = devstat->; */
3635 /* stats->tx_window_errors = devstat->; */