Lines Matching refs:rx_bytes
283 u64 rx_bytes; member
534 u64 rx_bytes; in mvneta_get_stats64() local
542 rx_bytes = cpu_stats->rx_bytes; in mvneta_get_stats64()
548 stats->rx_bytes += rx_bytes; in mvneta_get_stats64()
1484 int rx_bytes, err; in mvneta_rx() local
1489 rx_bytes = rx_desc->data_size - (ETH_FCS_LEN + MVNETA_MH_SIZE); in mvneta_rx()
1501 if (rx_bytes <= rx_copybreak) { in mvneta_rx()
1503 skb = netdev_alloc_skb_ip_align(dev, rx_bytes); in mvneta_rx()
1510 rx_bytes, in mvneta_rx()
1512 memcpy(skb_put(skb, rx_bytes), in mvneta_rx()
1514 rx_bytes); in mvneta_rx()
1521 rcvd_bytes += rx_bytes; in mvneta_rx()
1535 rcvd_bytes += rx_bytes; in mvneta_rx()
1539 skb_put(skb, rx_bytes); in mvneta_rx()
1561 stats->rx_bytes += rcvd_bytes; in mvneta_rx()