Lines Matching refs:pkt_len
746 int pkt_len; in greth_rx() local
787 pkt_len = status & GRETH_BD_LEN; in greth_rx()
789 skb = netdev_alloc_skb(dev, pkt_len + NET_IP_ALIGN); in greth_rx()
803 pkt_len, in greth_rx()
807 greth_print_rx_packet(phys_to_virt(dma_addr), pkt_len); in greth_rx()
809 memcpy(skb_put(skb, pkt_len), phys_to_virt(dma_addr), pkt_len); in greth_rx()
812 dev->stats.rx_bytes += pkt_len; in greth_rx()
861 int pkt_len; in greth_rx_gbit() local
908 pkt_len = status & GRETH_BD_LEN; in greth_rx_gbit()
916 greth_print_rx_packet(phys_to_virt(greth_read_bd(&bdp->addr)), pkt_len); in greth_rx_gbit()
918 skb_put(skb, pkt_len); in greth_rx_gbit()
927 dev->stats.rx_bytes += pkt_len; in greth_rx_gbit()