Home
last modified time | relevance | path

Searched refs:recv_wr (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/infiniband/core/
H A Dcma_trace.h187 __field(u32, recv_wr)
199 __entry->recv_wr = qp_init_attr->cap.max_recv_wr;
219 __entry->recv_wr, __entry->qp_num, __entry->rc
/linux/fs/smb/client/
H A Dsmbdirect.c1050 struct ib_recv_wr recv_wr; in smbd_post_recv() local
1064 recv_wr.wr_cqe = &response->cqe; in smbd_post_recv()
1065 recv_wr.next = NULL; in smbd_post_recv()
1066 recv_wr.sg_list = &response->sge; in smbd_post_recv()
1067 recv_wr.num_sge = 1; in smbd_post_recv()
1069 rc = ib_post_recv(sc->ib.qp, &recv_wr, NULL); in smbd_post_recv()
/linux/drivers/infiniband/hw/mlx4/
H A Dmad.c1319 struct ib_recv_wr recv_wr; in mlx4_ib_post_pv_qp_buf() local
1330 recv_wr.next = NULL; in mlx4_ib_post_pv_qp_buf()
1331 recv_wr.sg_list = &sg_list; in mlx4_ib_post_pv_qp_buf()
1332 recv_wr.num_sge = 1; in mlx4_ib_post_pv_qp_buf()
1333 recv_wr.wr_id = (u64) index | MLX4_TUN_WRID_RECV | in mlx4_ib_post_pv_qp_buf()
1337 return ib_post_recv(tun_qp->qp, &recv_wr, &bad_recv_wr); in mlx4_ib_post_pv_qp_buf()
/linux/include/rdma/
H A Dib_verbs.h2380 int (*post_recv)(struct ib_qp *qp, const struct ib_recv_wr *recv_wr,
2388 const struct ib_recv_wr *recv_wr,
3826 * @recv_wr: A list of work requests to post on the receive queue.
3831 const struct ib_recv_wr *recv_wr,
3836 return srq->device->ops.post_srq_recv(srq, recv_wr,
3965 * @recv_wr: A list of work requests to post on the receive queue.
3970 const struct ib_recv_wr *recv_wr,
3975 return qp->device->ops.post_recv(qp, recv_wr, bad_recv_wr ? : &dummy);
3782 ib_post_srq_recv(struct ib_srq * srq,const struct ib_recv_wr * recv_wr,const struct ib_recv_wr ** bad_recv_wr) ib_post_srq_recv() argument
3921 ib_post_recv(struct ib_qp * qp,const struct ib_recv_wr * recv_wr,const struct ib_recv_wr ** bad_recv_wr) ib_post_recv() argument
/linux/include/uapi/rdma/
H A Dib_user_verbs.h878 struct ib_uverbs_recv_wr recv_wr[]; member