| /linux/drivers/net/wireless/intel/ipw2x00/ |
| H A D | libipw_tx.c | 341 struct sk_buff *skb_new = dev_alloc_skb(len); in libipw_xmit() local 343 if (unlikely(!skb_new)) in libipw_xmit() 346 skb_reserve(skb_new, crypt->ops->extra_msdu_prefix_len); in libipw_xmit() 347 skb_put_data(skb_new, &header, hdr_len); in libipw_xmit() 349 libipw_copy_snap(skb_put(skb_new, SNAP_SIZE + sizeof(u16)), in libipw_xmit() 351 skb_copy_from_linear_data(skb, skb_put(skb_new, skb->len), skb->len); in libipw_xmit() 352 res = crypt->ops->encrypt_msdu(skb_new, hdr_len, crypt->priv); in libipw_xmit() 355 dev_kfree_skb_any(skb_new); in libipw_xmit() 359 skb = skb_new; in libipw_xmit()
|
| /linux/drivers/infiniband/sw/siw/ |
| H A D | siw_qp_rx.c | 47 srx->skb_new -= copied; in siw_rx_umem() 63 srx->skb_new -= copied; in siw_rx_umem() 99 srx->skb_new -= copied; in siw_rx_umem() 122 srx->skb_new -= len; in siw_rx_kva() 464 data_bytes = min(srx->fpdu_part_rem, srx->skb_new); in siw_proc_send() 562 bytes = min(srx->fpdu_part_rem, srx->skb_new); in siw_proc_write() 847 bytes = min(srx->fpdu_part_rem, srx->skb_new); in siw_proc_rresp() 874 srx->skb_new -= length; in siw_update_skb_rcvd() 910 if (srx->skb_new < sizeof(struct iwarp_ctrl_tagged)) in siw_proc_terminate() 929 if (to_copy + MPA_CRC_SIZE > srx->skb_new) in siw_proc_terminate() [all …]
|
| H A D | siw.h | 284 int skb_new; /* pending unread bytes in skb */ member
|
| /linux/net/batman-adv/ |
| H A D | distributed-arp-table.c | 1133 struct sk_buff *skb_new; in batadv_dat_snoop_outgoing_arp_request() local 1187 skb_new = batadv_dat_arp_create_reply(bat_priv, ip_dst, ip_src, in batadv_dat_snoop_outgoing_arp_request() 1190 if (!skb_new) in batadv_dat_snoop_outgoing_arp_request() 1193 skb_new->protocol = eth_type_trans(skb_new, mesh_iface); in batadv_dat_snoop_outgoing_arp_request() 1199 netif_rx(skb_new); in batadv_dat_snoop_outgoing_arp_request() 1227 struct sk_buff *skb_new; in batadv_dat_snoop_incoming_arp_request() local 1254 skb_new = batadv_dat_arp_create_reply(bat_priv, ip_dst, ip_src, in batadv_dat_snoop_incoming_arp_request() 1256 if (!skb_new) in batadv_dat_snoop_incoming_arp_request() 1264 err = batadv_send_skb_via_tt_4addr(bat_priv, skb_new, in batadv_dat_snoop_incoming_arp_request() 1268 err = batadv_send_skb_via_tt(bat_priv, skb_new, NULL, vid); in batadv_dat_snoop_incoming_arp_request()
|
| /linux/drivers/net/wireless/realtek/rtw88/ |
| H A D | fw.c | 1228 struct sk_buff *skb_new; in rtw_get_rsvd_page_skb() local 1233 skb_new = alloc_skb(1, GFP_KERNEL); in rtw_get_rsvd_page_skb() 1234 if (!skb_new) in rtw_get_rsvd_page_skb() 1237 skb_put(skb_new, 1); in rtw_get_rsvd_page_skb() 1238 return skb_new; in rtw_get_rsvd_page_skb() 1249 skb_new = ieee80211_beacon_get_tim(hw, vif, &tim_offset, NULL, 0); in rtw_get_rsvd_page_skb() 1253 skb_new = ieee80211_pspoll_get(hw, vif); in rtw_get_rsvd_page_skb() 1256 skb_new = ieee80211_proberesp_get(hw, vif); in rtw_get_rsvd_page_skb() 1259 skb_new = ieee80211_nullfunc_get(hw, vif, -1, false); in rtw_get_rsvd_page_skb() 1262 skb_new = ieee80211_nullfunc_get(hw, vif, -1, true); in rtw_get_rsvd_page_skb() [all …]
|
| /linux/drivers/net/ethernet/ |
| H A D | korina.c | 600 struct sk_buff *skb, *skb_new; in korina_rx() local 607 skb_new = NULL; in korina_rx() 639 skb_new = netdev_alloc_skb_ip_align(dev, KORINA_RBSIZE); in korina_rx() 640 if (!skb_new) in korina_rx() 643 ca = dma_map_single(lp->dmadev, skb_new->data, KORINA_RBSIZE, in korina_rx() 646 dev_kfree_skb_any(skb_new); in korina_rx() 667 lp->rx_skb[lp->rx_next_done] = skb_new; in korina_rx()
|
| /linux/drivers/net/ethernet/cavium/octeon/ |
| H A D | octeon_mgmt.c | 398 struct sk_buff *skb_new; in octeon_mgmt_receive_one() local 437 skb_new = skb_copy_expand(skb, 0, skb2->len, in octeon_mgmt_receive_one() 439 if (!skb_new) in octeon_mgmt_receive_one() 441 if (skb_copy_bits(skb2, 0, skb_tail_pointer(skb_new), in octeon_mgmt_receive_one() 444 skb_put(skb_new, skb2->len); in octeon_mgmt_receive_one() 447 skb = skb_new; in octeon_mgmt_receive_one()
|
| /linux/drivers/net/ethernet/sun/ |
| H A D | niu.c | 6653 struct sk_buff *skb_new; in niu_start_xmit() local 6655 skb_new = skb_realloc_headroom(skb, len); in niu_start_xmit() 6656 if (!skb_new) in niu_start_xmit() 6659 skb = skb_new; in niu_start_xmit()
|