浏览代码

IB/uverbs: Add device memory capabilities reporting

This change allows vendors to report device memory capability
max_dm_size - to user via uverbs command.

Signed-off-by: Ariel Levkovich <lariel@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Ariel Levkovich 7 年之前
父节点
当前提交
1d8eeb9f6a
共有 2 个文件被更改,包括 7 次插入0 次删除
  1. 6 0
      drivers/infiniband/core/uverbs_cmd.c
  2. 1 0
      include/rdma/ib_verbs.h

+ 6 - 0
drivers/infiniband/core/uverbs_cmd.c

@@ -4006,6 +4006,12 @@ int ib_uverbs_ex_query_device(struct ib_uverbs_file *file,
 	resp.cq_moderation_caps.max_cq_moderation_period =
 	resp.cq_moderation_caps.max_cq_moderation_period =
 		attr.cq_caps.max_cq_moderation_period;
 		attr.cq_caps.max_cq_moderation_period;
 	resp.response_length += sizeof(resp.cq_moderation_caps);
 	resp.response_length += sizeof(resp.cq_moderation_caps);
+
+	if (ucore->outlen < resp.response_length + sizeof(resp.max_dm_size))
+		goto end;
+
+	resp.max_dm_size = attr.max_dm_size;
+	resp.response_length += sizeof(resp.max_dm_size);
 end:
 end:
 	err = ib_copy_to_udata(ucore, &resp, resp.response_length);
 	err = ib_copy_to_udata(ucore, &resp, resp.response_length);
 	return err;
 	return err;

+ 1 - 0
include/rdma/ib_verbs.h

@@ -372,6 +372,7 @@ struct ib_device_attr {
 	u32			raw_packet_caps; /* Use ib_raw_packet_caps enum */
 	u32			raw_packet_caps; /* Use ib_raw_packet_caps enum */
 	struct ib_tm_caps	tm_caps;
 	struct ib_tm_caps	tm_caps;
 	struct ib_cq_caps       cq_caps;
 	struct ib_cq_caps       cq_caps;
+	u64			max_dm_size;
 };
 };
 
 
 enum ib_mtu {
 enum ib_mtu {