Return srq number associated with the given shared receive queue (srq)
#include <infiniband/verbs.h> int ibv_get_srq_num(struct ibv_srq *srq, uint32_t *srq_num);
ibv_get_srq_num() return srq number associated with the given shared receive queue The argument srq is an ibv_srq struct, as defined in <infiniband/verbs.h>. srq_num is an output parameter that holds the returned srq number.
ibv_get_srq_num() returns 0 on success, or the value of errno on failure (which indicates the failure reason).
Yishai Hadas <[email protected]>