Home
last modified time | relevance | path

Searched refs:req_skb (Results 1 – 6 of 6) sorted by relevance

/linux/net/mctp/
H A Ddevice.c153 struct sk_buff *req_skb, struct nlmsghdr *req_nlh) in mctp_addr_notify() argument
155 u32 portid = NETLINK_CB(req_skb).portid; in mctp_addr_notify()
/linux/drivers/infiniband/hw/cxgb4/
H A Dcm.c690 struct sk_buff *req_skb = skb_dequeue(&ep->com.ep_skb_list); in send_abort_req() local
693 if (WARN_ON(!req_skb)) in send_abort_req()
696 cxgb_mk_abort_req(req_skb, wrlen, ep->hwtid, ep->txq_idx, in send_abort_req()
699 return c4iw_l2t_send(&ep->com.dev->rdev, req_skb, ep->l2t); in send_abort_req()
4003 struct sk_buff *req_skb; in send_fw_pass_open_req() local
4008 req_skb = alloc_skb(sizeof(struct fw_ofld_connection_wr), GFP_KERNEL); in send_fw_pass_open_req()
4009 if (!req_skb) in send_fw_pass_open_req()
4011 req = __skb_put_zero(req_skb, sizeof(*req)); in send_fw_pass_open_req()
4043 set_wr_txq(req_skb, CPL_PRIORITY_CONTROL, port_id); in send_fw_pass_open_req()
4044 ret = cxgb4_ofld_send(dev->rdev.lldi.ports[0], req_skb); in send_fw_pass_open_req()
[all …]
/linux/net/bluetooth/
H A Dhci_core.c1467 if (hdev->req_skb) { in hci_cmd_timeout()
1468 u16 opcode = hci_skb_opcode(hdev->req_skb); in hci_cmd_timeout()
2775 kfree_skb(hdev->req_skb); in hci_release_dev()
3172 data = hci_cmd_data(hdev->req_skb, opcode); in hci_sent_cmd_data()
3994 skb = hdev->req_skb; in hci_req_cmd_complete()
4131 kfree_skb(hdev->req_skb); in hci_send_cmd_sync()
4132 hdev->req_skb = skb_clone(hdev->sent_cmd, GFP_KERNEL); in hci_send_cmd_sync()
H A Dhci_event.c4423 if (ev->status || (hdev->req_skb && !hci_skb_event(hdev->req_skb))) { in hci_role_change_evt()
7443 if (hdev->req_skb && in hci_get_cmd_complete()
7444 (hci_opcode_ogf(hci_skb_opcode(hdev->req_skb)) == 0x08 || in hci_get_cmd_complete()
7445 hci_skb_opcode(hdev->req_skb) == HCI_OP_NOP) && in hci_get_cmd_complete()
7446 hci_skb_event(hdev->req_skb) == ev->subevent) { in hci_get_cmd_complete()
7447 *opcode = hci_skb_opcode(hdev->req_skb); in hci_get_cmd_complete()
7814 if (hdev->req_skb &&
7815 hci_opcode_ogf(hci_skb_opcode(hdev->req_skb)) != 0x08 &&
7816 hci_skb_event(hdev->req_skb)
[all...]
H A Dhci_sync.c35 kfree_skb(hdev->req_skb); in hci_cmd_sync_complete()
36 hdev->req_skb = NULL; in hci_cmd_sync_complete()
5226 if (hdev->req_skb) { in hci_dev_open_sync()
5227 kfree_skb(hdev->req_skb); in hci_dev_open_sync()
5228 hdev->req_skb = NULL; in hci_dev_open_sync()
5399 if (hdev->req_skb) { in hci_dev_close_sync()
5400 kfree_skb(hdev->req_skb); in hci_dev_close_sync()
5401 hdev->req_skb = NULL; in hci_dev_close_sync()
/linux/include/net/bluetooth/
H A Dhci_core.h535 struct sk_buff *req_skb; member