Lines Matching refs:estats
105 vp->estats.rx_queue_max = 0; in vector_reset_stats()
106 vp->estats.rx_queue_running_average = 0; in vector_reset_stats()
107 vp->estats.tx_queue_max = 0; in vector_reset_stats()
108 vp->estats.tx_queue_running_average = 0; in vector_reset_stats()
109 vp->estats.rx_encaps_errors = 0; in vector_reset_stats()
110 vp->estats.tx_timeout_count = 0; in vector_reset_stats()
111 vp->estats.tx_restart_queue = 0; in vector_reset_stats()
112 vp->estats.tx_kicks = 0; in vector_reset_stats()
113 vp->estats.tx_flow_control_xon = 0; in vector_reset_stats()
114 vp->estats.tx_flow_control_xoff = 0; in vector_reset_stats()
115 vp->estats.sg_ok = 0; in vector_reset_stats()
116 vp->estats.sg_linearized = 0; in vector_reset_stats()
313 vp->estats.sg_ok++; in prep_msg()
456 if (result > vp->estats.tx_queue_max) in vector_send()
457 vp->estats.tx_queue_max = result; in vector_send()
458 vp->estats.tx_queue_running_average = in vector_send()
459 (vp->estats.tx_queue_running_average + result) >> 1; in vector_send()
467 vp->estats.tx_restart_queue++; in vector_send()
887 vp->estats.rx_encaps_errors++; in vector_legacy_rx()
891 vp->estats.rx_csum_offload_good++; in vector_legacy_rx()
1007 vp->estats.rx_encaps_errors++; in vector_mmsg_rx()
1011 vp->estats.rx_csum_offload_good++; in vector_mmsg_rx()
1039 if (vp->estats.rx_queue_max < packet_count) in vector_mmsg_rx()
1040 vp->estats.rx_queue_max = packet_count; in vector_mmsg_rx()
1041 vp->estats.rx_queue_running_average = in vector_mmsg_rx()
1042 (vp->estats.rx_queue_running_average + packet_count) >> 1; in vector_mmsg_rx()
1093 vp->estats.tx_kicks++; in vector_net_start_xmit()
1103 vp->estats.tx_kicks++; in vector_net_start_xmit()
1202 vp->estats.tx_kicks++; in vector_tx_poll()
1340 vp->estats.tx_timeout_count++; in vector_net_tx_timeout()
1482 struct ethtool_stats *estats, in vector_get_ethtool_stats() argument
1487 memcpy(tmp_stats, &vp->estats, sizeof(struct vector_estats)); in vector_get_ethtool_stats()
1549 vp->estats.tx_kicks++; in vector_timer_expire()