Lines Matching refs:new_skb
1635 struct sk_buff *skb, *new_skb; in typhoon_rx() local
1665 (new_skb = netdev_alloc_skb(tp->dev, pkt_len + 2)) != NULL) { in typhoon_rx()
1666 skb_reserve(new_skb, 2); in typhoon_rx()
1669 skb_copy_to_linear_data(new_skb, skb->data, pkt_len); in typhoon_rx()
1673 skb_put(new_skb, pkt_len); in typhoon_rx()
1676 new_skb = skb; in typhoon_rx()
1677 skb_put(new_skb, pkt_len); in typhoon_rx()
1682 new_skb->protocol = eth_type_trans(new_skb, tp->dev); in typhoon_rx()
1689 new_skb->ip_summed = CHECKSUM_UNNECESSARY; in typhoon_rx()
1691 skb_checksum_none_assert(new_skb); in typhoon_rx()
1694 __vlan_hwaccel_put_tag(new_skb, htons(ETH_P_8021Q), in typhoon_rx()
1696 netif_receive_skb(new_skb); in typhoon_rx()