Lines Matching refs:stats64
150 struct ppp_link_stats stats64; /* 64 bit network stats */ member
1061 ppp_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats64) in ppp_get_stats64() argument
1066 stats64->rx_packets = ppp->stats64.rx_packets; in ppp_get_stats64()
1067 stats64->rx_bytes = ppp->stats64.rx_bytes; in ppp_get_stats64()
1071 stats64->tx_packets = ppp->stats64.tx_packets; in ppp_get_stats64()
1072 stats64->tx_bytes = ppp->stats64.tx_bytes; in ppp_get_stats64()
1075 stats64->rx_errors = dev->stats.rx_errors; in ppp_get_stats64()
1076 stats64->tx_errors = dev->stats.tx_errors; in ppp_get_stats64()
1077 stats64->rx_dropped = dev->stats.rx_dropped; in ppp_get_stats64()
1078 stats64->tx_dropped = dev->stats.tx_dropped; in ppp_get_stats64()
1079 stats64->rx_length_errors = dev->stats.rx_length_errors; in ppp_get_stats64()
1081 return stats64; in ppp_get_stats64()
1229 ++ppp->stats64.tx_packets; in ppp_send_frame()
1230 ppp->stats64.tx_bytes += skb->len - 2; in ppp_send_frame()
1818 ++ppp->stats64.rx_packets; in ppp_receive_nonmp_frame()
1819 ppp->stats64.rx_bytes += skb->len - 2; in ppp_receive_nonmp_frame()
2642 st->p.ppp_ipackets = ppp->stats64.rx_packets; in ppp_get_stats()
2644 st->p.ppp_ibytes = ppp->stats64.rx_bytes; in ppp_get_stats()
2645 st->p.ppp_opackets = ppp->stats64.tx_packets; in ppp_get_stats()
2647 st->p.ppp_obytes = ppp->stats64.tx_bytes; in ppp_get_stats()