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;
310 new_skb = atm_alloc_charge(out_vcc,skb->len,GFP_KERNEL);
311 if (!new_skb) {
315 __net_timestamp(new_skb);
316 skb_copy_from_linear_data(skb, skb_put(new_skb, skb->len), skb->len);
317 out_vcc->push(out_vcc,new_skb);