@@ -80,6 +80,7 @@ static const struct verbs_context_ops hns_common_ops = {
.rereg_mr = hns_roce_u_rereg_mr,
.create_srq = hns_roce_u_create_srq,
.modify_srq = hns_roce_u_modify_srq,
+ .query_srq = hns_roce_u_query_srq,
};
static struct verbs_context *hns_roce_alloc_context(struct ibv_device *ibdev,
@@ -305,6 +305,7 @@ struct ibv_srq *hns_roce_u_create_srq(struct ibv_pd *pd,
struct ibv_srq_init_attr *srq_init_attr);
int hns_roce_u_modify_srq(struct ibv_srq *srq, struct ibv_srq_attr *srq_attr,
int srq_attr_mask);
+int hns_roce_u_query_srq(struct ibv_srq *srq, struct ibv_srq_attr *srq_attr);
struct ibv_qp *hns_roce_u_create_qp(struct ibv_pd *pd,
struct ibv_qp_init_attr *attr);
@@ -589,6 +589,13 @@ int hns_roce_u_modify_srq(struct ibv_srq *srq, struct ibv_srq_attr *srq_attr,
sizeof(cmd));
}
+int hns_roce_u_query_srq(struct ibv_srq *srq, struct ibv_srq_attr *srq_attr)
+{
+ struct ibv_query_srq cmd;
+
+ return ibv_cmd_query_srq(srq, srq_attr, &cmd, sizeof(cmd));
+}
+
static int hns_roce_verify_qp(struct ibv_qp_init_attr *attr,
struct hns_roce_context *context)
{
This patch mainly implement the verbs of querying srq for hip08 userspace library. Signed-off-by: Lijun Ou <oulijun@huawei.com> --- providers/hns/hns_roce_u.c | 1 + providers/hns/hns_roce_u.h | 1 + providers/hns/hns_roce_u_verbs.c | 7 +++++++ 3 files changed, 9 insertions(+)