mm: make wait_on_page_writeback() wait for multiple pending writebacks
[linux/fpc-iii.git] / include / rdma / restrack.h
blob05e18839eaffcdf1fa626481237c1deca7a1d7ce
1 /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
2 /*
3 * Copyright (c) 2017-2018 Mellanox Technologies. All rights reserved.
4 */
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>
17 struct ib_device;
18 struct sk_buff;
20 /**
21 * enum rdma_restrack_type - HW objects to track
23 enum rdma_restrack_type {
24 /**
25 * @RDMA_RESTRACK_PD: Protection domain (PD)
27 RDMA_RESTRACK_PD,
28 /**
29 * @RDMA_RESTRACK_CQ: Completion queue (CQ)
31 RDMA_RESTRACK_CQ,
32 /**
33 * @RDMA_RESTRACK_QP: Queue pair (QP)
35 RDMA_RESTRACK_QP,
36 /**
37 * @RDMA_RESTRACK_CM_ID: Connection Manager ID (CM_ID)
39 RDMA_RESTRACK_CM_ID,
40 /**
41 * @RDMA_RESTRACK_MR: Memory Region (MR)
43 RDMA_RESTRACK_MR,
44 /**
45 * @RDMA_RESTRACK_CTX: Verbs contexts (CTX)
47 RDMA_RESTRACK_CTX,
48 /**
49 * @RDMA_RESTRACK_COUNTER: Statistic Counter
51 RDMA_RESTRACK_COUNTER,
52 /**
53 * @RDMA_RESTRACK_MAX: Last entry, used for array dclarations
55 RDMA_RESTRACK_MAX
58 /**
59 * struct rdma_restrack_entry - metadata per-entry
61 struct rdma_restrack_entry {
62 /**
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
70 bool valid;
71 /**
72 * @no_track: don't add this entry to restrack DB
74 * This field is used to mark an entry that doesn't need to be added to
75 * internal restrack DB and presented later to the users at the nldev
76 * query stage.
78 u8 no_track : 1;
80 * @kref: Protect destroy of the resource
82 struct kref kref;
84 * @comp: Signal that all consumers of resource are completed their work
86 struct completion comp;
87 /**
88 * @task: owner of resource tracking entity
90 * There are two types of entities: created by user and created
91 * by kernel.
93 * This is relevant for the entities created by users.
94 * For the entities created by kernel, this pointer will be NULL.
96 struct task_struct *task;
97 /**
98 * @kern_name: name of owner for the kernel created entities.
100 const char *kern_name;
102 * @type: various objects in restrack database
104 enum rdma_restrack_type type;
106 * @user: user resource
108 bool user;
110 * @id: ID to expose to users
112 u32 id;
115 int rdma_restrack_count(struct ib_device *dev,
116 enum rdma_restrack_type type);
118 * rdma_is_kernel_res() - check the owner of resource
119 * @res: resource entry
121 static inline bool rdma_is_kernel_res(const struct rdma_restrack_entry *res)
123 return !res->user;
127 * rdma_restrack_get() - grab to protect resource from release
128 * @res: resource entry
130 int __must_check rdma_restrack_get(struct rdma_restrack_entry *res);
133 * rdma_restrack_put() - release resource
134 * @res: resource entry
136 int rdma_restrack_put(struct rdma_restrack_entry *res);
139 * Helper functions for rdma drivers when filling out
140 * nldev driver attributes.
142 int rdma_nl_put_driver_u32(struct sk_buff *msg, const char *name, u32 value);
143 int rdma_nl_put_driver_u32_hex(struct sk_buff *msg, const char *name,
144 u32 value);
145 int rdma_nl_put_driver_u64(struct sk_buff *msg, const char *name, u64 value);
146 int rdma_nl_put_driver_u64_hex(struct sk_buff *msg, const char *name,
147 u64 value);
148 int rdma_nl_put_driver_string(struct sk_buff *msg, const char *name,
149 const char *str);
150 int rdma_nl_stat_hwcounter_entry(struct sk_buff *msg, const char *name,
151 u64 value);
153 struct rdma_restrack_entry *rdma_restrack_get_byid(struct ib_device *dev,
154 enum rdma_restrack_type type,
155 u32 id);
158 * rdma_restrack_no_track() - don't add resource to the DB
159 * @res: resource entry
161 * Every user of thie API should be cross examined.
162 * Probaby you don't need to use this function.
164 static inline void rdma_restrack_no_track(struct rdma_restrack_entry *res)
166 res->no_track = true;
168 static inline bool rdma_restrack_is_tracked(struct rdma_restrack_entry *res)
170 return !res->no_track;
172 #endif /* _RDMA_RESTRACK_H_ */