Lines Matching refs:stats64
152 struct ppp_link_stats stats64; /* 64 bit network stats */
1404 ppp_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats64)
1409 stats64->rx_packets = ppp->stats64.rx_packets;
1410 stats64->rx_bytes = ppp->stats64.rx_bytes;
1414 stats64->tx_packets = ppp->stats64.tx_packets;
1415 stats64->tx_bytes = ppp->stats64.tx_bytes;
1418 stats64->rx_errors = dev->stats.rx_errors;
1419 stats64->tx_errors = dev->stats.tx_errors;
1420 stats64->rx_dropped = dev->stats.rx_dropped;
1421 stats64->tx_dropped = dev->stats.tx_dropped;
1422 stats64->rx_length_errors = dev->stats.rx_length_errors;
1641 ++ppp->stats64.tx_packets;
1642 ppp->stats64.tx_bytes += skb->len - PPP_PROTO_LEN;
2281 ++ppp->stats64.rx_packets;
2282 ppp->stats64.rx_bytes += skb->len - 2;
3110 st->p.ppp_ipackets = ppp->stats64.rx_packets;
3112 st->p.ppp_ibytes = ppp->stats64.rx_bytes;
3113 st->p.ppp_opackets = ppp->stats64.tx_packets;
3115 st->p.ppp_obytes = ppp->stats64.tx_bytes;