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()
1532 int rx_bytes, err; in mvneta_rx() local
1536 rx_bytes = rx_desc->data_size - (ETH_FCS_LEN + MVNETA_MH_SIZE); in mvneta_rx()
1549 if (rx_bytes <= rx_copybreak) { in mvneta_rx()
1551 skb = netdev_alloc_skb_ip_align(dev, rx_bytes); in mvneta_rx()
1558 rx_bytes, in mvneta_rx()
1560 memcpy(skb_put(skb, rx_bytes), in mvneta_rx()
1562 rx_bytes); in mvneta_rx()
1569 rcvd_bytes += rx_bytes; in mvneta_rx()
1595 rcvd_bytes += rx_bytes; in mvneta_rx()
1599 skb_put(skb, rx_bytes); in mvneta_rx()
1613 stats->rx_bytes += rcvd_bytes; in mvneta_rx()