Lines Matching refs:estats

103 	vp->estats.rx_queue_max = 0;  in vector_reset_stats()
104 vp->estats.rx_queue_running_average = 0; in vector_reset_stats()
105 vp->estats.tx_queue_max = 0; in vector_reset_stats()
106 vp->estats.tx_queue_running_average = 0; in vector_reset_stats()
107 vp->estats.rx_encaps_errors = 0; in vector_reset_stats()
108 vp->estats.tx_timeout_count = 0; in vector_reset_stats()
109 vp->estats.tx_restart_queue = 0; in vector_reset_stats()
110 vp->estats.tx_kicks = 0; in vector_reset_stats()
111 vp->estats.tx_flow_control_xon = 0; in vector_reset_stats()
112 vp->estats.tx_flow_control_xoff = 0; in vector_reset_stats()
113 vp->estats.sg_ok = 0; in vector_reset_stats()
114 vp->estats.sg_linearized = 0; in vector_reset_stats()
285 vp->estats.sg_ok++; in prep_msg()
427 if (result > vp->estats.tx_queue_max) in vector_send()
428 vp->estats.tx_queue_max = result; in vector_send()
429 vp->estats.tx_queue_running_average = in vector_send()
430 (vp->estats.tx_queue_running_average + result) >> 1; in vector_send()
438 vp->estats.tx_restart_queue++; in vector_send()
854 vp->estats.rx_encaps_errors++; in vector_legacy_rx()
858 vp->estats.rx_csum_offload_good++; in vector_legacy_rx()
965 vp->estats.rx_encaps_errors++; in vector_mmsg_rx()
969 vp->estats.rx_csum_offload_good++; in vector_mmsg_rx()
997 if (vp->estats.rx_queue_max < packet_count) in vector_mmsg_rx()
998 vp->estats.rx_queue_max = packet_count; in vector_mmsg_rx()
999 vp->estats.rx_queue_running_average = in vector_mmsg_rx()
1000 (vp->estats.rx_queue_running_average + packet_count) >> 1; in vector_mmsg_rx()
1041 vp->estats.tx_kicks++; in vector_net_start_xmit()
1051 vp->estats.tx_kicks++; in vector_net_start_xmit()
1149 vp->estats.tx_kicks++; in vector_tx_poll()
1281 vp->estats.tx_timeout_count++; in vector_net_tx_timeout()
1365 struct ethtool_stats *estats, in vector_get_ethtool_stats() argument
1370 memcpy(tmp_stats, &vp->estats, sizeof(struct vector_estats)); in vector_get_ethtool_stats()
1426 vp->estats.tx_kicks++; in vector_timer_expire()