Searched refs:skb_new (Results 1 – 4 of 4) sorted by relevance
/drivers/net/wireless/ipw2x00/ |
D | libipw_tx.c | 358 struct sk_buff *skb_new = dev_alloc_skb(len); in ieee80211_xmit() local 360 if (unlikely(!skb_new)) in ieee80211_xmit() 363 skb_reserve(skb_new, crypt->ops->extra_msdu_prefix_len); in ieee80211_xmit() 364 memcpy(skb_put(skb_new, hdr_len), &header, hdr_len); in ieee80211_xmit() 366 ieee80211_copy_snap(skb_put(skb_new, SNAP_SIZE + sizeof(u16)), in ieee80211_xmit() 368 skb_copy_from_linear_data(skb, skb_put(skb_new, skb->len), skb->len); in ieee80211_xmit() 369 res = crypt->ops->encrypt_msdu(skb_new, hdr_len, crypt->priv); in ieee80211_xmit() 372 dev_kfree_skb_any(skb_new); in ieee80211_xmit() 376 skb = skb_new; in ieee80211_xmit()
|
/drivers/net/ |
D | korina.c | 353 struct sk_buff *skb, *skb_new; in korina_rx() local 362 skb_new = NULL; in korina_rx() 402 skb_new = netdev_alloc_skb(dev, KORINA_RBSIZE + 2); in korina_rx() 404 if (!skb_new) in korina_rx() 420 skb_reserve(skb_new, 2); in korina_rx() 422 lp->rx_skb[lp->rx_next_done] = skb_new; in korina_rx() 428 if (skb_new) in korina_rx() 429 rd->ca = CPHYSADDR(skb_new->data); in korina_rx()
|
D | niu.c | 6529 struct sk_buff *skb_new; in niu_start_xmit() local 6531 skb_new = skb_realloc_headroom(skb, len); in niu_start_xmit() 6532 if (!skb_new) { in niu_start_xmit() 6537 skb = skb_new; in niu_start_xmit()
|
/drivers/usb/gadget/ |
D | u_ether.c | 545 struct sk_buff *skb_new; in eth_start_xmit() local 547 skb_new = dev->wrap(skb); in eth_start_xmit() 548 if (!skb_new) in eth_start_xmit() 552 skb = skb_new; in eth_start_xmit()
|