Lines Matching refs:tot
423 struct rtnl_link_stats64 *tot) in veth_get_stats64() argument
429 tot->tx_dropped = atomic64_read(&priv->dropped); in veth_get_stats64()
430 dev_fetch_sw_netstats(tot, dev->tstats); in veth_get_stats64()
433 tot->tx_dropped += rx.xdp_tx_err; in veth_get_stats64()
434 tot->rx_dropped = rx.rx_drops + rx.peer_tq_xdp_xmit_err; in veth_get_stats64()
435 tot->rx_bytes += rx.xdp_bytes; in veth_get_stats64()
436 tot->rx_packets += rx.xdp_packets; in veth_get_stats64()
444 tot->rx_bytes += tot_peer.tx_bytes; in veth_get_stats64()
445 tot->rx_packets += tot_peer.tx_packets; in veth_get_stats64()
448 tot->tx_dropped += rx.peer_tq_xdp_xmit_err; in veth_get_stats64()
449 tot->rx_dropped += rx.xdp_tx_err; in veth_get_stats64()
450 tot->tx_bytes += rx.xdp_bytes; in veth_get_stats64()
451 tot->tx_packets += rx.xdp_packets; in veth_get_stats64()