Lines Matching refs:tot
405 struct rtnl_link_stats64 *tot) in veth_get_stats64() argument
412 tot->tx_dropped = veth_stats_tx(dev, &packets, &bytes); in veth_get_stats64()
413 tot->tx_bytes = bytes; in veth_get_stats64()
414 tot->tx_packets = packets; in veth_get_stats64()
417 tot->tx_dropped += rx.xdp_tx_err; in veth_get_stats64()
418 tot->rx_dropped = rx.rx_drops + rx.peer_tq_xdp_xmit_err; in veth_get_stats64()
419 tot->rx_bytes = rx.xdp_bytes; in veth_get_stats64()
420 tot->rx_packets = rx.xdp_packets; in veth_get_stats64()
426 tot->rx_bytes += bytes; in veth_get_stats64()
427 tot->rx_packets += packets; in veth_get_stats64()
430 tot->tx_dropped += rx.peer_tq_xdp_xmit_err; in veth_get_stats64()
431 tot->rx_dropped += rx.xdp_tx_err; in veth_get_stats64()
432 tot->tx_bytes += rx.xdp_bytes; in veth_get_stats64()
433 tot->tx_packets += rx.xdp_packets; in veth_get_stats64()