Lines Matching defs:rtstats
667 struct rtnl_link_stats64 rtstats = {};
670 dev_get_stats(dev, &rtstats);
672 stats->packets = rtstats.rx_packets - !!rtstats.rx_packets;
673 stats->bytes = rtstats.rx_bytes;
679 struct rtnl_link_stats64 rtstats = {};
682 dev_get_stats(dev, &rtstats);
684 stats->packets = rtstats.tx_packets - !!rtstats.tx_packets;
685 stats->bytes = rtstats.tx_bytes;
692 struct rtnl_link_stats64 rtstats = {};
694 dev_get_stats(dev, &rtstats);
696 rx->packets = !!rtstats.rx_packets;
698 tx->packets = !!rtstats.tx_packets;