Home
last modified time | relevance | path

Searched refs:skb_copy (Results 1 – 25 of 46) sorted by relevance

12

/Linux-v4.19/net/nfc/
Drawsock.c373 struct sk_buff *skb_copy = NULL, *nskb; in nfc_send_to_raw_sock() local
380 if (!skb_copy) { in nfc_send_to_raw_sock()
381 skb_copy = __pskb_copy_fclone(skb, NFC_RAW_HEADER_SIZE, in nfc_send_to_raw_sock()
383 if (!skb_copy) in nfc_send_to_raw_sock()
386 data = skb_push(skb_copy, NFC_RAW_HEADER_SIZE); in nfc_send_to_raw_sock()
393 nskb = skb_clone(skb_copy, GFP_ATOMIC); in nfc_send_to_raw_sock()
403 kfree_skb(skb_copy); in nfc_send_to_raw_sock()
Dllcp_core.c673 struct sk_buff *skb_copy = NULL, *nskb; in nfc_llcp_send_to_raw_sock() local
683 if (skb_copy == NULL) { in nfc_llcp_send_to_raw_sock()
684 skb_copy = __pskb_copy_fclone(skb, NFC_RAW_HEADER_SIZE, in nfc_llcp_send_to_raw_sock()
687 if (skb_copy == NULL) in nfc_llcp_send_to_raw_sock()
690 data = skb_push(skb_copy, NFC_RAW_HEADER_SIZE); in nfc_llcp_send_to_raw_sock()
697 nskb = skb_clone(skb_copy, GFP_ATOMIC); in nfc_llcp_send_to_raw_sock()
707 kfree_skb(skb_copy); in nfc_llcp_send_to_raw_sock()
746 copy_skb = skb_copy(skb, GFP_ATOMIC); in nfc_llcp_tx_work()
/Linux-v4.19/net/bluetooth/
Dhci_sock.c194 struct sk_buff *skb_copy = NULL; in hci_send_to_sock() local
230 if (!skb_copy) { in hci_send_to_sock()
232 skb_copy = __pskb_copy_fclone(skb, 1, GFP_ATOMIC, true); in hci_send_to_sock()
233 if (!skb_copy) in hci_send_to_sock()
237 memcpy(skb_push(skb_copy, 1), &hci_skb_pkt_type(skb), 1); in hci_send_to_sock()
240 nskb = skb_clone(skb_copy, GFP_ATOMIC); in hci_send_to_sock()
250 kfree_skb(skb_copy); in hci_send_to_sock()
299 struct sk_buff *skb_copy = NULL; in hci_send_to_monitor() local
335 skb_copy = __pskb_copy_fclone(skb, HCI_MON_HDR_SIZE, GFP_ATOMIC, true); in hci_send_to_monitor()
336 if (!skb_copy) in hci_send_to_monitor()
[all …]
D6lowpan.c265 skb_cp = skb_copy(skb, GFP_ATOMIC); in give_skb_to_upper()
/Linux-v4.19/net/x25/
Dx25_dev.c108 nskb = skb_copy(skb, GFP_ATOMIC); in x25_lapb_receive_frame()
/Linux-v4.19/net/ax25/
Dax25_ip.c153 if ((ourskb = skb_copy(skb, GFP_ATOMIC)) == NULL) { in ax25_ip_xmit()
Dax25_in.c119 struct sk_buff *skbn = skb_copy(skb, GFP_ATOMIC); in ax25_rx_iframe()
/Linux-v4.19/drivers/net/wireless/marvell/mwifiex/
Duap_txrx.c258 skb_uap = skb_copy(skb, GFP_ATOMIC); in mwifiex_handle_uap_rx_forward()
298 skb_uap = skb_copy(skb, GFP_ATOMIC); in mwifiex_uap_recv_packet()
/Linux-v4.19/drivers/staging/rtl8188eu/os_dep/
Dxmit_linux.c133 newskb = skb_copy(skb, GFP_ATOMIC); in rtw_mlcst2unicst()
/Linux-v4.19/drivers/isdn/hysdn/
Dhycapi.c208 skb = skb_copy(hycapi_applications[i].listen_req[ctrl->cnr - 1], GFP_ATOMIC); in hycapi_restart_internal()
421 if (!(hycapi_applications[appl_id -1].listen_req[ctrl->cnr - 1] = skb_copy(skb, GFP_ATOMIC))) in hycapi_send_message()
/Linux-v4.19/drivers/staging/rtl8723bs/os_dep/
Dosdep_service.c47 return skb_copy(skb, in_interrupt() ? GFP_ATOMIC : GFP_KERNEL); in _rtw_skb_copy()
/Linux-v4.19/net/bridge/
Dbr_forward.c262 skb = skb_copy(skb, GFP_ATOMIC); in maybe_deliver_addr()
/Linux-v4.19/net/batman-adv/
Dbat_v_elp.c289 skb = skb_copy(hard_iface->bat_v.elp_skb, GFP_ATOMIC); in batadv_v_elp_periodic_work()
Dsend.c780 newskb = skb_copy(skb, GFP_ATOMIC); in batadv_add_bcast_packet_to_list()
/Linux-v4.19/drivers/isdn/mISDN/
Dstack.c78 cskb = skb_copy(skb, GFP_ATOMIC); in send_socklist()
108 cskb = skb_copy(skb, GFP_KERNEL); in send_layer2()
/Linux-v4.19/drivers/net/wireless/intel/iwlwifi/mvm/
Dtdls.c603 mvm->tdls_cs.peer.skb = skb_copy(tmpl_skb, GFP_KERNEL); in iwl_mvm_tdls_channel_switch()
/Linux-v4.19/net/mac80211/
Dmesh_pathtbl.c187 skb = skb_copy(fskb, GFP_ATOMIC); in mesh_path_move_to_queue()
Drx.c251 skb = skb_copy(skb, GFP_ATOMIC); in ieee80211_handle_mu_mimo_mon()
2424 xmit_skb = skb_copy(skb, GFP_ATOMIC); in ieee80211_deliver_skb()
4213 xmit_skb = skb_copy(skb, GFP_ATOMIC); in ieee80211_invoke_fast_rx()
4284 skb = skb_copy(skb, GFP_ATOMIC); in ieee80211_prepare_and_rx_handle()
/Linux-v4.19/net/sctp/
Dulpqueue.c372 new = skb_copy(f_frag, GFP_ATOMIC); in sctp_make_reassembled_event()
/Linux-v4.19/net/ipv6/
Dicmp.c621 skb2 = data_len ? skb_copy(skb, GFP_ATOMIC) : skb_clone(skb, GFP_ATOMIC); in ip6_err_gen_icmpv6_unreach()
/Linux-v4.19/net/can/
Dgw.c394 nskb = skb_copy(skb, GFP_ATOMIC); in can_can_gw_rcv()
/Linux-v4.19/drivers/net/wireless/ath/wil6210/
Dtxrx.c773 xmit_skb = skb_copy(skb, GFP_ATOMIC); in wil_netif_rx_any()
1311 skb2 = skb_copy(skb, GFP_ATOMIC); in wil_find_tx_bcast_2()
/Linux-v4.19/drivers/net/ethernet/hisilicon/hns/
Dhns_enet.c231 new_skb = skb_copy(skb, GFP_ATOMIC); in hns_nic_maybe_stop_tx()
272 new_skb = skb_copy(skb, GFP_ATOMIC); in hns_nic_maybe_stop_tso()
Dhns_ethtool.c416 new_skb = skb_copy(skb, GFP_ATOMIC); in __lb_other_process()
/Linux-v4.19/net/decnet/
Ddn_dev.c969 struct sk_buff *skb2 = skb_copy(skb, GFP_ATOMIC); in dn_send_router_hello()

12