Lines Matching refs:rx_wr
728 struct ib_recv_wr *rx_wr; in isert_post_recvm() local
732 for (rx_wr = isert_conn->rx_wr, i = 0; i < count; i++, rx_wr++) { in isert_post_recvm()
735 rx_wr->wr_cqe = &rx_desc->rx_cqe; in isert_post_recvm()
736 rx_wr->sg_list = &rx_desc->rx_sg; in isert_post_recvm()
737 rx_wr->num_sge = 1; in isert_post_recvm()
738 rx_wr->next = rx_wr + 1; in isert_post_recvm()
741 rx_wr--; in isert_post_recvm()
742 rx_wr->next = NULL; /* mark end of work requests list */ in isert_post_recvm()
744 ret = ib_post_recv(isert_conn->qp, isert_conn->rx_wr, NULL); in isert_post_recvm()
754 struct ib_recv_wr rx_wr; in isert_post_recv() local
766 rx_wr.wr_cqe = &rx_desc->rx_cqe; in isert_post_recv()
767 rx_wr.sg_list = &rx_desc->rx_sg; in isert_post_recv()
768 rx_wr.num_sge = 1; in isert_post_recv()
769 rx_wr.next = NULL; in isert_post_recv()
771 ret = ib_post_recv(isert_conn->qp, &rx_wr, NULL); in isert_post_recv()
885 struct ib_recv_wr rx_wr; in isert_login_post_recv() local
900 memset(&rx_wr, 0, sizeof(struct ib_recv_wr)); in isert_login_post_recv()
901 rx_wr.wr_cqe = &isert_conn->login_desc->rx_cqe; in isert_login_post_recv()
902 rx_wr.sg_list = &sge; in isert_login_post_recv()
903 rx_wr.num_sge = 1; in isert_login_post_recv()
905 ret = ib_post_recv(isert_conn->qp, &rx_wr, NULL); in isert_login_post_recv()