Lines Matching refs:pkt_len
1685 unsigned int pkt_len; in rx_bottom() local
1690 pkt_len = skb->len; in rx_bottom()
1694 stats->rx_bytes += pkt_len; in rx_bottom()
1727 unsigned int pkt_len; in rx_bottom() local
1730 pkt_len = le32_to_cpu(rx_desc->opts1) & RX_LEN_MASK; in rx_bottom()
1731 if (pkt_len < ETH_ZLEN) in rx_bottom()
1734 len_used += pkt_len; in rx_bottom()
1738 pkt_len -= CRC_SIZE; in rx_bottom()
1741 skb = netdev_alloc_skb_ip_align(netdev, pkt_len); in rx_bottom()
1748 memcpy(skb->data, rx_data, pkt_len); in rx_bottom()
1749 skb_put(skb, pkt_len); in rx_bottom()
1756 stats->rx_bytes += pkt_len; in rx_bottom()
1762 rx_data = rx_agg_align(rx_data + pkt_len + CRC_SIZE); in rx_bottom()