Lines Matching refs:new_skb
194 struct sk_buff *new_skb; in atmtcp_v_send() local
213 new_skb = atm_alloc_charge(out_vcc,size,GFP_ATOMIC); in atmtcp_v_send()
214 if (!new_skb) { in atmtcp_v_send()
220 hdr = (void *) skb_put(new_skb,sizeof(struct atmtcp_hdr)); in atmtcp_v_send()
224 skb_copy_from_linear_data(skb, skb_put(new_skb, skb->len), skb->len); in atmtcp_v_send()
227 out_vcc->push(out_vcc,new_skb); in atmtcp_v_send()
287 struct sk_buff *new_skb; in atmtcp_c_send() local
307 new_skb = atm_alloc_charge(out_vcc,skb->len,GFP_KERNEL); in atmtcp_c_send()
308 if (!new_skb) { in atmtcp_c_send()
312 __net_timestamp(new_skb); in atmtcp_c_send()
313 skb_copy_from_linear_data(skb, skb_put(new_skb, skb->len), skb->len); in atmtcp_c_send()
314 out_vcc->push(out_vcc,new_skb); in atmtcp_c_send()