Lines Matching refs:send_wr
1258 struct ib_send_wr send_wr, *send_wr_fail; in rpcrdma_ep_post() local
1270 send_wr.next = NULL; in rpcrdma_ep_post()
1271 send_wr.wr_id = RPCRDMA_IGNORE_COMPLETION; in rpcrdma_ep_post()
1272 send_wr.sg_list = iov; in rpcrdma_ep_post()
1273 send_wr.num_sge = req->rl_niovs; in rpcrdma_ep_post()
1274 send_wr.opcode = IB_WR_SEND; in rpcrdma_ep_post()
1276 for (i = 0; i < send_wr.num_sge; i++) in rpcrdma_ep_post()
1280 __func__, send_wr.num_sge); in rpcrdma_ep_post()
1283 send_wr.send_flags = 0; in rpcrdma_ep_post()
1286 send_wr.send_flags = IB_SEND_SIGNALED; in rpcrdma_ep_post()
1289 rc = ib_post_send(ia->ri_id->qp, &send_wr, &send_wr_fail); in rpcrdma_ep_post()