Lines Matching defs:tot
452 struct rtnl_link_stats64 *tot)
458 tot->tx_dropped = atomic64_read(&priv->dropped);
459 dev_fetch_sw_netstats(tot, dev->tstats);
462 tot->tx_dropped += rx.xdp_tx_err;
463 tot->rx_dropped = rx.rx_drops + rx.peer_tq_xdp_xmit_err;
464 tot->rx_bytes += rx.xdp_bytes;
465 tot->rx_packets += rx.xdp_packets;
473 tot->rx_bytes += tot_peer.tx_bytes;
474 tot->rx_packets += tot_peer.tx_packets;
477 tot->tx_dropped += rx.peer_tq_xdp_xmit_err;
478 tot->rx_dropped += rx.xdp_tx_err;
479 tot->tx_bytes += rx.xdp_bytes;
480 tot->tx_packets += rx.xdp_packets;