Lines Matching refs:total_stats
117 struct rmnet_vnd_stats total_stats; in rmnet_get_stats64() local
121 memset(&total_stats, 0, sizeof(struct rmnet_vnd_stats)); in rmnet_get_stats64()
128 total_stats.rx_pkts += pcpu_ptr->stats.rx_pkts; in rmnet_get_stats64()
129 total_stats.rx_bytes += pcpu_ptr->stats.rx_bytes; in rmnet_get_stats64()
130 total_stats.tx_pkts += pcpu_ptr->stats.tx_pkts; in rmnet_get_stats64()
131 total_stats.tx_bytes += pcpu_ptr->stats.tx_bytes; in rmnet_get_stats64()
134 total_stats.tx_drops += pcpu_ptr->stats.tx_drops; in rmnet_get_stats64()
137 s->rx_packets = total_stats.rx_pkts; in rmnet_get_stats64()
138 s->rx_bytes = total_stats.rx_bytes; in rmnet_get_stats64()
139 s->tx_packets = total_stats.tx_pkts; in rmnet_get_stats64()
140 s->tx_bytes = total_stats.tx_bytes; in rmnet_get_stats64()
141 s->tx_dropped = total_stats.tx_drops; in rmnet_get_stats64()