Home
last modified time | relevance | path

Searched refs:resp_skb (Results 1 – 9 of 9) sorted by relevance

/linux-4.1.27/drivers/net/wireless/mwifiex/
Dcmdevt.c100 if (cmd_node->resp_skb) { in mwifiex_clean_cmd_node()
101 adapter->if_ops.cmdrsp_complete(adapter, cmd_node->resp_skb); in mwifiex_clean_cmd_node()
102 cmd_node->resp_skb = NULL; in mwifiex_clean_cmd_node()
401 if (!cmd_array[i].resp_skb) in mwifiex_free_cmd_buffer()
406 cmd_array[i].resp_skb); in mwifiex_free_cmd_buffer()
408 dev_kfree_skb_any(cmd_array[i].resp_skb); in mwifiex_free_cmd_buffer()
773 if (!adapter->curr_cmd || !adapter->curr_cmd->resp_skb) { in mwifiex_process_cmdresp()
782 resp = (struct host_cmd_ds_command *) adapter->curr_cmd->resp_skb->data; in mwifiex_process_cmdresp()
Dusb.c102 adapter->curr_cmd->resp_skb = skb; in mwifiex_usb_recv()
Dmain.h665 struct sk_buff *resp_skb; member
Dsdio.c1161 adapter->curr_cmd->resp_skb = skb; in mwifiex_decode_rx_packet()
Dpcie.c1621 adapter->curr_cmd->resp_skb = skb; in mwifiex_pcie_process_cmd_complete()
/linux-4.1.27/drivers/media/radio/wl128x/
Dfmdrv_common.c308 fmdev->resp_skb = skb; in recv_tasklet()
317 if (fmdev->resp_skb != NULL) in recv_tasklet()
321 fmdev->resp_skb = skb; in recv_tasklet()
480 if (!fmdev->resp_skb) { in fmc_send_cmd()
485 skb = fmdev->resp_skb; in fmc_send_cmd()
486 fmdev->resp_skb = NULL; in fmc_send_cmd()
520 *skb = fmdev->resp_skb; in check_cmdresp_status()
521 fmdev->resp_skb = NULL; in check_cmdresp_status()
Dfmdrv.h223 struct sk_buff *resp_skb; /* Response from the chip */ member
/linux-4.1.27/net/xfrm/
Dxfrm_user.c1154 struct sk_buff *resp_skb; in xfrm_get_sa() local
1161 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq); in xfrm_get_sa()
1162 if (IS_ERR(resp_skb)) { in xfrm_get_sa()
1163 err = PTR_ERR(resp_skb); in xfrm_get_sa()
1165 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid); in xfrm_get_sa()
1178 struct sk_buff *resp_skb; in xfrm_alloc_userspi() local
1217 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq); in xfrm_alloc_userspi()
1218 if (IS_ERR(resp_skb)) { in xfrm_alloc_userspi()
1219 err = PTR_ERR(resp_skb); in xfrm_alloc_userspi()
1223 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid); in xfrm_alloc_userspi()
[all …]
/linux-4.1.27/net/key/
Daf_key.c1270 struct sk_buff *resp_skb; in pfkey_getspi() local
1349 resp_skb = err ? ERR_PTR(err) : pfkey_xfrm_state2msg(x); in pfkey_getspi()
1351 if (IS_ERR(resp_skb)) { in pfkey_getspi()
1353 return PTR_ERR(resp_skb); in pfkey_getspi()
1356 out_hdr = (struct sadb_msg *) resp_skb->data; in pfkey_getspi()
1367 pfkey_broadcast(resp_skb, GFP_KERNEL, BROADCAST_ONE, sk, net); in pfkey_getspi()