Lines Matching refs:new_skb
1074 struct sk_buff *new_skb = NULL; in aqc111_rx_fixup() local
1145 new_skb = skb_clone(skb, GFP_ATOMIC); in aqc111_rx_fixup()
1147 if (!new_skb) in aqc111_rx_fixup()
1150 new_skb->len = pkt_len; in aqc111_rx_fixup()
1151 skb_pull(new_skb, AQ_RX_HW_PAD); in aqc111_rx_fixup()
1152 skb_set_tail_pointer(new_skb, new_skb->len); in aqc111_rx_fixup()
1154 new_skb->truesize = SKB_TRUESIZE(new_skb->len); in aqc111_rx_fixup()
1156 aqc111_rx_checksum(new_skb, pkt_desc); in aqc111_rx_fixup()
1160 __vlan_hwaccel_put_tag(new_skb, htons(ETH_P_8021Q), in aqc111_rx_fixup()
1164 usbnet_skb_return(dev, new_skb); in aqc111_rx_fixup()
1173 new_skb = NULL; in aqc111_rx_fixup()
1186 struct sk_buff *new_skb = NULL; in aqc111_tx_fixup() local
1225 new_skb = skb_copy_expand(skb, sizeof(tx_desc), in aqc111_tx_fixup()
1228 skb = new_skb; in aqc111_tx_fixup()