More code examples:

Create an SRC QP, part of SRC domain:

        attr.qp_type = IBV_QPT_SRC;
        attr.src_domain = d;
        qp = ibv_create_qp(pd, &attr);

Given remote SRQ number, send data to this SRQ over an SRC QP:

        wr.src_remote_srq_num = src_remote_srq_num;
        ib_post_send(qp, &wr);

Note: SRQ number needs to be exchanged as part of CM private data
      or some other protocol.

-- 
MST
_______________________________________________
general mailing list
[email protected]
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general

To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general

Reply via email to