Lines Matching defs:msgid

296 static rdma_stat rib_send(CONN *conn, struct clist *cl, uint32_t msgid);
297 static rdma_stat rib_send_resp(CONN *conn, struct clist *cl, uint32_t msgid);
298 static rdma_stat rib_post_resp(CONN *conn, struct clist *cl, uint32_t msgid);
299 static rdma_stat rib_post_resp_remove(CONN *conn, uint32_t msgid);
301 static rdma_stat rib_recv(CONN *conn, struct clist **clp, uint32_t msgid);
2305 rib_send_and_wait(CONN *conn, struct clist *cl, uint32_t msgid,
2343 wdesc = rib_init_sendwait(msgid, cv_sig, qp);
2404 rib_send(CONN *conn, struct clist *cl, uint32_t msgid)
2410 ret = rib_send_and_wait(conn, cl, msgid, 1, 1, &wd);
2420 rib_send_resp(CONN *conn, struct clist *cl, uint32_t msgid)
2429 rd = rdma_done_add(qp, msgid);
2432 ret = rib_send_and_wait(conn, cl, msgid, 1, 0, wid);
2456 rib_create_wid(rib_qp_t *qp, ibt_wr_ds_t *sgl, uint32_t msgid)
2461 rwid->xid = msgid;
2475 rib_clnt_post(CONN* conn, struct clist *cl, uint32_t msgid)
2513 rwid = rib_create_wid(qp, &sgl[0], msgid);
2520 rep = rib_addreplylist(qp, msgid);
2618 rib_post_resp(CONN* conn, struct clist *cl, uint32_t msgid)
2620 return (rib_clnt_post(conn, cl, msgid));
2625 rib_post_resp_remove(CONN* conn, uint32_t msgid)
2632 if (rep->xid == msgid) {
2663 * posted earlier by rib_post_resp(conn, cl, msgid).
2666 rib_recv(CONN *conn, struct clist **clp, uint32_t msgid)
2674 * Find the reply structure for this msgid
2679 if (rep->xid == msgid)
2731 * No matching reply structure found for given msgid on the
3584 rib_addreplylist(rib_qp_t *qp, uint32_t msgid)
3594 rep->xid = msgid;