Lines Matching refs:new_skb
1633 struct sk_buff *skb, *new_skb; in typhoon_rx() local
1663 (new_skb = netdev_alloc_skb(tp->dev, pkt_len + 2)) != NULL) { in typhoon_rx()
1664 skb_reserve(new_skb, 2); in typhoon_rx()
1668 skb_copy_to_linear_data(new_skb, skb->data, pkt_len); in typhoon_rx()
1672 skb_put(new_skb, pkt_len); in typhoon_rx()
1675 new_skb = skb; in typhoon_rx()
1676 skb_put(new_skb, pkt_len); in typhoon_rx()
1681 new_skb->protocol = eth_type_trans(new_skb, tp->dev); in typhoon_rx()
1688 new_skb->ip_summed = CHECKSUM_UNNECESSARY; in typhoon_rx()
1690 skb_checksum_none_assert(new_skb); in typhoon_rx()
1693 __vlan_hwaccel_put_tag(new_skb, htons(ETH_P_8021Q), in typhoon_rx()
1695 netif_receive_skb(new_skb); in typhoon_rx()