I have N qps and I will send M RDMA Read requests through the send queue in each qp.
The read request is sent by ibv_post_send()
and the cq is polled iteratively using ibv_poll_cq()
.
The question is, if I get some work completions (WC) after calling ibv_poll_cq()
, how do I know the WC corresponds to which read request? I am using Reliable Connection mode.