1 /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
3 * Copyright (c) 2017-2018 Mellanox Technologies. All rights reserved.
6 #ifndef _RDMA_RESTRACK_H_
7 #define _RDMA_RESTRACK_H_
9 #include <linux/typecheck.h>
10 #include <linux/sched.h>
11 #include <linux/kref.h>
12 #include <linux/completion.h>
13 #include <linux/sched/task.h>
14 #include <uapi/rdma/rdma_netlink.h>
15 #include <linux/xarray.h>
21 * enum rdma_restrack_type - HW objects to track
23 enum rdma_restrack_type
{
25 * @RDMA_RESTRACK_PD: Protection domain (PD)
29 * @RDMA_RESTRACK_CQ: Completion queue (CQ)
33 * @RDMA_RESTRACK_QP: Queue pair (QP)
37 * @RDMA_RESTRACK_CM_ID: Connection Manager ID (CM_ID)
41 * @RDMA_RESTRACK_MR: Memory Region (MR)
45 * @RDMA_RESTRACK_CTX: Verbs contexts (CTX)
49 * @RDMA_RESTRACK_COUNTER: Statistic Counter
51 RDMA_RESTRACK_COUNTER
,
53 * @RDMA_RESTRACK_MAX: Last entry, used for array dclarations
59 * struct rdma_restrack_entry - metadata per-entry
61 struct rdma_restrack_entry
{
63 * @valid: validity indicator
65 * The entries are filled during rdma_restrack_add,
66 * can be attempted to be free during rdma_restrack_del.
68 * As an example for that, see mlx5 QPs with type MLX5_IB_QPT_HW_GSI
72 * @kref: Protect destroy of the resource
76 * @comp: Signal that all consumers of resource are completed their work
78 struct completion comp
;
80 * @task: owner of resource tracking entity
82 * There are two types of entities: created by user and created
85 * This is relevant for the entities created by users.
86 * For the entities created by kernel, this pointer will be NULL.
88 struct task_struct
*task
;
90 * @kern_name: name of owner for the kernel created entities.
92 const char *kern_name
;
94 * @type: various objects in restrack database
96 enum rdma_restrack_type type
;
98 * @user: user resource
102 * @id: ID to expose to users
107 int rdma_restrack_count(struct ib_device
*dev
,
108 enum rdma_restrack_type type
);
110 void rdma_restrack_kadd(struct rdma_restrack_entry
*res
);
111 void rdma_restrack_uadd(struct rdma_restrack_entry
*res
);
114 * rdma_restrack_del() - delete object from the reource tracking database
115 * @res: resource entry
116 * @type: actual type of object to operate
118 void rdma_restrack_del(struct rdma_restrack_entry
*res
);
121 * rdma_is_kernel_res() - check the owner of resource
122 * @res: resource entry
124 static inline bool rdma_is_kernel_res(struct rdma_restrack_entry
*res
)
130 * rdma_restrack_get() - grab to protect resource from release
131 * @res: resource entry
133 int __must_check
rdma_restrack_get(struct rdma_restrack_entry
*res
);
136 * rdma_restrack_put() - release resource
137 * @res: resource entry
139 int rdma_restrack_put(struct rdma_restrack_entry
*res
);
142 * rdma_restrack_set_task() - set the task for this resource
143 * @res: resource entry
144 * @caller: kernel name, the current task will be used if the caller is NULL.
146 void rdma_restrack_set_task(struct rdma_restrack_entry
*res
,
150 * Helper functions for rdma drivers when filling out
151 * nldev driver attributes.
153 int rdma_nl_put_driver_u32(struct sk_buff
*msg
, const char *name
, u32 value
);
154 int rdma_nl_put_driver_u32_hex(struct sk_buff
*msg
, const char *name
,
156 int rdma_nl_put_driver_u64(struct sk_buff
*msg
, const char *name
, u64 value
);
157 int rdma_nl_put_driver_u64_hex(struct sk_buff
*msg
, const char *name
,
159 int rdma_nl_put_driver_string(struct sk_buff
*msg
, const char *name
,
161 int rdma_nl_stat_hwcounter_entry(struct sk_buff
*msg
, const char *name
,
164 struct rdma_restrack_entry
*rdma_restrack_get_byid(struct ib_device
*dev
,
165 enum rdma_restrack_type type
,
167 #endif /* _RDMA_RESTRACK_H_ */