Lines Matching refs:new_skb
1074 struct sk_buff *new_skb = NULL; in aqc111_rx_fixup() local
1140 new_skb = skb_clone(skb, GFP_ATOMIC); in aqc111_rx_fixup()
1142 if (!new_skb) in aqc111_rx_fixup()
1145 new_skb->len = pkt_len; in aqc111_rx_fixup()
1146 skb_pull(new_skb, AQ_RX_HW_PAD); in aqc111_rx_fixup()
1147 skb_set_tail_pointer(new_skb, new_skb->len); in aqc111_rx_fixup()
1149 new_skb->truesize = SKB_TRUESIZE(new_skb->len); in aqc111_rx_fixup()
1151 aqc111_rx_checksum(new_skb, pkt_desc); in aqc111_rx_fixup()
1155 __vlan_hwaccel_put_tag(new_skb, htons(ETH_P_8021Q), in aqc111_rx_fixup()
1159 usbnet_skb_return(dev, new_skb); in aqc111_rx_fixup()
1168 new_skb = NULL; in aqc111_rx_fixup()
1181 struct sk_buff *new_skb = NULL; in aqc111_tx_fixup() local
1220 new_skb = skb_copy_expand(skb, sizeof(tx_desc), in aqc111_tx_fixup()
1223 skb = new_skb; in aqc111_tx_fixup()