Lines Matching refs:stats64
152 struct ppp_link_stats stats64; /* 64 bit network stats */
1515 ppp_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats64)
1520 stats64->rx_packets = ppp->stats64.rx_packets;
1521 stats64->rx_bytes = ppp->stats64.rx_bytes;
1525 stats64->tx_packets = ppp->stats64.tx_packets;
1526 stats64->tx_bytes = ppp->stats64.tx_bytes;
1529 stats64->rx_errors = dev->stats.rx_errors;
1530 stats64->tx_errors = dev->stats.tx_errors;
1531 stats64->rx_dropped = dev->stats.rx_dropped;
1532 stats64->tx_dropped = dev->stats.tx_dropped;
1533 stats64->rx_length_errors = dev->stats.rx_length_errors;
1774 ++ppp->stats64.tx_packets;
1775 ppp->stats64.tx_bytes += skb->len - PPP_PROTO_LEN;
2452 ++ppp->stats64.rx_packets;
2453 ppp->stats64.rx_bytes += skb->len - 2;
3284 st->p.ppp_ipackets = ppp->stats64.rx_packets;
3286 st->p.ppp_ibytes = ppp->stats64.rx_bytes;
3287 st->p.ppp_opackets = ppp->stats64.tx_packets;
3289 st->p.ppp_obytes = ppp->stats64.tx_bytes;