Lines Matching refs:new_skb
1074 struct sk_buff *new_skb = NULL; in aqc111_rx_fixup() local
1144 new_skb = netdev_alloc_skb_ip_align(dev->net, pkt_len); in aqc111_rx_fixup()
1146 if (!new_skb) in aqc111_rx_fixup()
1149 skb_put(new_skb, pkt_len); in aqc111_rx_fixup()
1150 memcpy(new_skb->data, skb->data, pkt_len); in aqc111_rx_fixup()
1151 skb_pull(new_skb, AQ_RX_HW_PAD); in aqc111_rx_fixup()
1154 aqc111_rx_checksum(new_skb, pkt_desc); in aqc111_rx_fixup()
1158 __vlan_hwaccel_put_tag(new_skb, htons(ETH_P_8021Q), in aqc111_rx_fixup()
1162 usbnet_skb_return(dev, new_skb); in aqc111_rx_fixup()
1171 new_skb = NULL; in aqc111_rx_fixup()
1184 struct sk_buff *new_skb = NULL; in aqc111_tx_fixup() local
1223 new_skb = skb_copy_expand(skb, sizeof(tx_desc), in aqc111_tx_fixup()
1226 skb = new_skb; in aqc111_tx_fixup()