Lines Matching refs:pkt_len
1671 unsigned int pkt_len; in rx_bottom() local
1676 pkt_len = skb->len; in rx_bottom()
1680 stats->rx_bytes += pkt_len; in rx_bottom()
1713 unsigned int pkt_len; in rx_bottom() local
1716 pkt_len = le32_to_cpu(rx_desc->opts1) & RX_LEN_MASK; in rx_bottom()
1717 if (pkt_len < ETH_ZLEN) in rx_bottom()
1720 len_used += pkt_len; in rx_bottom()
1724 pkt_len -= CRC_SIZE; in rx_bottom()
1727 skb = netdev_alloc_skb_ip_align(netdev, pkt_len); in rx_bottom()
1734 memcpy(skb->data, rx_data, pkt_len); in rx_bottom()
1735 skb_put(skb, pkt_len); in rx_bottom()
1742 stats->rx_bytes += pkt_len; in rx_bottom()
1748 rx_data = rx_agg_align(rx_data + pkt_len + CRC_SIZE); in rx_bottom()