Lines Matching refs:rx_wr
1011 struct ib_recv_wr *rx_wr, *rx_wr_failed; in isert_post_recv() local
1016 for (rx_wr = isert_conn->rx_wr, i = 0; i < count; i++, rx_wr++) { in isert_post_recv()
1018 rx_wr->wr_id = (uintptr_t)rx_desc; in isert_post_recv()
1019 rx_wr->sg_list = &rx_desc->rx_sg; in isert_post_recv()
1020 rx_wr->num_sge = 1; in isert_post_recv()
1021 rx_wr->next = rx_wr + 1; in isert_post_recv()
1025 rx_wr--; in isert_post_recv()
1026 rx_wr->next = NULL; /* mark end of work requests list */ in isert_post_recv()
1029 ret = ib_post_recv(isert_conn->qp, isert_conn->rx_wr, in isert_post_recv()
1132 struct ib_recv_wr rx_wr, *rx_wr_fail; in isert_rdma_post_recvl() local
1144 memset(&rx_wr, 0, sizeof(struct ib_recv_wr)); in isert_rdma_post_recvl()
1145 rx_wr.wr_id = (uintptr_t)isert_conn->login_req_buf; in isert_rdma_post_recvl()
1146 rx_wr.sg_list = &sge; in isert_rdma_post_recvl()
1147 rx_wr.num_sge = 1; in isert_rdma_post_recvl()
1150 ret = ib_post_recv(isert_conn->qp, &rx_wr, &rx_wr_fail); in isert_rdma_post_recvl()