Lines Matching refs:rx_bytes
332 u64 rx_bytes; member
598 u64 rx_bytes; in mvneta_get_stats64() local
606 rx_bytes = cpu_stats->rx_bytes; in mvneta_get_stats64()
612 stats->rx_bytes += rx_bytes; in mvneta_get_stats64()
1537 int rx_bytes, err; in mvneta_rx() local
1541 rx_bytes = rx_desc->data_size - (ETH_FCS_LEN + MVNETA_MH_SIZE); in mvneta_rx()
1554 if (rx_bytes <= rx_copybreak) { in mvneta_rx()
1556 skb = netdev_alloc_skb_ip_align(dev, rx_bytes); in mvneta_rx()
1563 rx_bytes, in mvneta_rx()
1565 memcpy(skb_put(skb, rx_bytes), in mvneta_rx()
1567 rx_bytes); in mvneta_rx()
1574 rcvd_bytes += rx_bytes; in mvneta_rx()
1600 rcvd_bytes += rx_bytes; in mvneta_rx()
1604 skb_put(skb, rx_bytes); in mvneta_rx()
1618 stats->rx_bytes += rcvd_bytes; in mvneta_rx()