Lines Matching refs:new_skb
195 struct sk_buff *new_skb;
214 new_skb = atm_alloc_charge(out_vcc,size,GFP_ATOMIC);
215 if (!new_skb) {
221 hdr = skb_put(new_skb, sizeof(struct atmtcp_hdr));
225 skb_copy_from_linear_data(skb, skb_put(new_skb, skb->len), skb->len);
228 out_vcc->push(out_vcc,new_skb);
288 struct sk_buff *new_skb;
308 new_skb = atm_alloc_charge(out_vcc,skb->len,GFP_KERNEL);
309 if (!new_skb) {
313 __net_timestamp(new_skb);
314 skb_copy_from_linear_data(skb, skb_put(new_skb, skb->len), skb->len);
315 out_vcc->push(out_vcc,new_skb);