Lines Matching refs:rx_wr
657 struct ib_recv_wr rx_wr, *rx_wr_failed; in iser_post_recvl() local
665 rx_wr.wr_id = (unsigned long)ib_conn->login_buf; in iser_post_recvl()
666 rx_wr.sg_list = &sge; in iser_post_recvl()
667 rx_wr.num_sge = 1; in iser_post_recvl()
668 rx_wr.next = NULL; in iser_post_recvl()
671 ib_ret = ib_post_recv(ib_conn->qp, &rx_wr, &rx_wr_failed); in iser_post_recvl()
681 struct ib_recv_wr *rx_wr, *rx_wr_failed; in iser_post_recvm() local
686 for (rx_wr = ib_conn->rx_wr, i = 0; i < count; i++, rx_wr++) { in iser_post_recvm()
688 rx_wr->wr_id = (unsigned long)rx_desc; in iser_post_recvm()
689 rx_wr->sg_list = &rx_desc->rx_sg; in iser_post_recvm()
690 rx_wr->num_sge = 1; in iser_post_recvm()
691 rx_wr->next = rx_wr + 1; in iser_post_recvm()
695 rx_wr--; in iser_post_recvm()
696 rx_wr->next = NULL; /* mark end of work requests list */ in iser_post_recvm()
699 ib_ret = ib_post_recv(ib_conn->qp, ib_conn->rx_wr, &rx_wr_failed); in iser_post_recvm()