Lines Matching refs:tot
333 struct rtnl_link_stats64 *tot) in veth_get_stats64() argument
340 tot->tx_dropped = veth_stats_tx(&tx, dev); in veth_get_stats64()
341 tot->tx_bytes = tx.bytes; in veth_get_stats64()
342 tot->tx_packets = tx.packets; in veth_get_stats64()
345 tot->rx_dropped = rx.xdp_drops; in veth_get_stats64()
346 tot->rx_bytes = rx.xdp_bytes; in veth_get_stats64()
347 tot->rx_packets = rx.xdp_packets; in veth_get_stats64()
352 tot->rx_dropped += veth_stats_tx(&tx, peer); in veth_get_stats64()
353 tot->rx_bytes += tx.bytes; in veth_get_stats64()
354 tot->rx_packets += tx.packets; in veth_get_stats64()
357 tot->tx_bytes += rx.xdp_bytes; in veth_get_stats64()
358 tot->tx_packets += rx.xdp_packets; in veth_get_stats64()