Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0
2 : : #include <linux/kernel.h>
3 : : #include <linux/module.h>
4 : : #include <linux/backing-dev.h>
5 : : #include <linux/bio.h>
6 : : #include <linux/blkdev.h>
7 : : #include <linux/mm.h>
8 : : #include <linux/init.h>
9 : : #include <linux/slab.h>
10 : : #include <linux/workqueue.h>
11 : : #include <linux/smp.h>
12 : :
13 : : #include <linux/blk-mq.h>
14 : : #include "blk.h"
15 : : #include "blk-mq.h"
16 : : #include "blk-mq-tag.h"
17 : :
18 : 0 : static void blk_mq_sysfs_release(struct kobject *kobj)
19 : : {
20 : 0 : struct blk_mq_ctxs *ctxs = container_of(kobj, struct blk_mq_ctxs, kobj);
21 : :
22 : 0 : free_percpu(ctxs->queue_ctx);
23 : 0 : kfree(ctxs);
24 : 0 : }
25 : :
26 : 0 : static void blk_mq_ctx_sysfs_release(struct kobject *kobj)
27 : : {
28 : 0 : struct blk_mq_ctx *ctx = container_of(kobj, struct blk_mq_ctx, kobj);
29 : :
30 : : /* ctx->ctxs won't be released until all ctx are freed */
31 : 0 : kobject_put(&ctx->ctxs->kobj);
32 : 0 : }
33 : :
34 : 0 : static void blk_mq_hw_sysfs_release(struct kobject *kobj)
35 : : {
36 : 0 : struct blk_mq_hw_ctx *hctx = container_of(kobj, struct blk_mq_hw_ctx,
37 : : kobj);
38 : :
39 : 0 : cancel_delayed_work_sync(&hctx->run_work);
40 : :
41 [ # # ]: 0 : if (hctx->flags & BLK_MQ_F_BLOCKING)
42 : 0 : cleanup_srcu_struct(hctx->srcu);
43 : 0 : blk_free_flush_queue(hctx->fq);
44 : 0 : sbitmap_free(&hctx->ctx_map);
45 : 0 : free_cpumask_var(hctx->cpumask);
46 : 0 : kfree(hctx->ctxs);
47 : 0 : kfree(hctx);
48 : 0 : }
49 : :
50 : : struct blk_mq_ctx_sysfs_entry {
51 : : struct attribute attr;
52 : : ssize_t (*show)(struct blk_mq_ctx *, char *);
53 : : ssize_t (*store)(struct blk_mq_ctx *, const char *, size_t);
54 : : };
55 : :
56 : : struct blk_mq_hw_ctx_sysfs_entry {
57 : : struct attribute attr;
58 : : ssize_t (*show)(struct blk_mq_hw_ctx *, char *);
59 : : ssize_t (*store)(struct blk_mq_hw_ctx *, const char *, size_t);
60 : : };
61 : :
62 : 0 : static ssize_t blk_mq_sysfs_show(struct kobject *kobj, struct attribute *attr,
63 : : char *page)
64 : : {
65 : 0 : struct blk_mq_ctx_sysfs_entry *entry;
66 : 0 : struct blk_mq_ctx *ctx;
67 : 0 : struct request_queue *q;
68 : 0 : ssize_t res;
69 : :
70 : 0 : entry = container_of(attr, struct blk_mq_ctx_sysfs_entry, attr);
71 : 0 : ctx = container_of(kobj, struct blk_mq_ctx, kobj);
72 : 0 : q = ctx->queue;
73 : :
74 [ # # ]: 0 : if (!entry->show)
75 : : return -EIO;
76 : :
77 : 0 : mutex_lock(&q->sysfs_lock);
78 : 0 : res = entry->show(ctx, page);
79 : 0 : mutex_unlock(&q->sysfs_lock);
80 : 0 : return res;
81 : : }
82 : :
83 : 0 : static ssize_t blk_mq_sysfs_store(struct kobject *kobj, struct attribute *attr,
84 : : const char *page, size_t length)
85 : : {
86 : 0 : struct blk_mq_ctx_sysfs_entry *entry;
87 : 0 : struct blk_mq_ctx *ctx;
88 : 0 : struct request_queue *q;
89 : 0 : ssize_t res;
90 : :
91 : 0 : entry = container_of(attr, struct blk_mq_ctx_sysfs_entry, attr);
92 : 0 : ctx = container_of(kobj, struct blk_mq_ctx, kobj);
93 : 0 : q = ctx->queue;
94 : :
95 [ # # ]: 0 : if (!entry->store)
96 : : return -EIO;
97 : :
98 : 0 : mutex_lock(&q->sysfs_lock);
99 : 0 : res = entry->store(ctx, page, length);
100 : 0 : mutex_unlock(&q->sysfs_lock);
101 : 0 : return res;
102 : : }
103 : :
104 : 0 : static ssize_t blk_mq_hw_sysfs_show(struct kobject *kobj,
105 : : struct attribute *attr, char *page)
106 : : {
107 : 0 : struct blk_mq_hw_ctx_sysfs_entry *entry;
108 : 0 : struct blk_mq_hw_ctx *hctx;
109 : 0 : struct request_queue *q;
110 : 0 : ssize_t res;
111 : :
112 : 0 : entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
113 : 0 : hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
114 : 0 : q = hctx->queue;
115 : :
116 [ # # ]: 0 : if (!entry->show)
117 : : return -EIO;
118 : :
119 : 0 : mutex_lock(&q->sysfs_lock);
120 : 0 : res = entry->show(hctx, page);
121 : 0 : mutex_unlock(&q->sysfs_lock);
122 : 0 : return res;
123 : : }
124 : :
125 : 0 : static ssize_t blk_mq_hw_sysfs_store(struct kobject *kobj,
126 : : struct attribute *attr, const char *page,
127 : : size_t length)
128 : : {
129 : 0 : struct blk_mq_hw_ctx_sysfs_entry *entry;
130 : 0 : struct blk_mq_hw_ctx *hctx;
131 : 0 : struct request_queue *q;
132 : 0 : ssize_t res;
133 : :
134 : 0 : entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
135 : 0 : hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
136 : 0 : q = hctx->queue;
137 : :
138 [ # # ]: 0 : if (!entry->store)
139 : : return -EIO;
140 : :
141 : 0 : mutex_lock(&q->sysfs_lock);
142 : 0 : res = entry->store(hctx, page, length);
143 : 0 : mutex_unlock(&q->sysfs_lock);
144 : 0 : return res;
145 : : }
146 : :
147 : 0 : static ssize_t blk_mq_hw_sysfs_nr_tags_show(struct blk_mq_hw_ctx *hctx,
148 : : char *page)
149 : : {
150 : 0 : return sprintf(page, "%u\n", hctx->tags->nr_tags);
151 : : }
152 : :
153 : 0 : static ssize_t blk_mq_hw_sysfs_nr_reserved_tags_show(struct blk_mq_hw_ctx *hctx,
154 : : char *page)
155 : : {
156 : 0 : return sprintf(page, "%u\n", hctx->tags->nr_reserved_tags);
157 : : }
158 : :
159 : 0 : static ssize_t blk_mq_hw_sysfs_cpus_show(struct blk_mq_hw_ctx *hctx, char *page)
160 : : {
161 : 0 : const size_t size = PAGE_SIZE - 1;
162 : 0 : unsigned int i, first = 1;
163 : 0 : int ret = 0, pos = 0;
164 : :
165 [ # # ]: 0 : for_each_cpu(i, hctx->cpumask) {
166 [ # # ]: 0 : if (first)
167 : 0 : ret = snprintf(pos + page, size - pos, "%u", i);
168 : : else
169 : 0 : ret = snprintf(pos + page, size - pos, ", %u", i);
170 : :
171 [ # # ]: 0 : if (ret >= size - pos)
172 : : break;
173 : :
174 : 0 : first = 0;
175 : 0 : pos += ret;
176 : : }
177 : :
178 : 0 : ret = snprintf(pos + page, size + 1 - pos, "\n");
179 : 0 : return pos + ret;
180 : : }
181 : :
182 : : static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags = {
183 : : .attr = {.name = "nr_tags", .mode = 0444 },
184 : : .show = blk_mq_hw_sysfs_nr_tags_show,
185 : : };
186 : : static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags = {
187 : : .attr = {.name = "nr_reserved_tags", .mode = 0444 },
188 : : .show = blk_mq_hw_sysfs_nr_reserved_tags_show,
189 : : };
190 : : static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus = {
191 : : .attr = {.name = "cpu_list", .mode = 0444 },
192 : : .show = blk_mq_hw_sysfs_cpus_show,
193 : : };
194 : :
195 : : static struct attribute *default_hw_ctx_attrs[] = {
196 : : &blk_mq_hw_sysfs_nr_tags.attr,
197 : : &blk_mq_hw_sysfs_nr_reserved_tags.attr,
198 : : &blk_mq_hw_sysfs_cpus.attr,
199 : : NULL,
200 : : };
201 : : ATTRIBUTE_GROUPS(default_hw_ctx);
202 : :
203 : : static const struct sysfs_ops blk_mq_sysfs_ops = {
204 : : .show = blk_mq_sysfs_show,
205 : : .store = blk_mq_sysfs_store,
206 : : };
207 : :
208 : : static const struct sysfs_ops blk_mq_hw_sysfs_ops = {
209 : : .show = blk_mq_hw_sysfs_show,
210 : : .store = blk_mq_hw_sysfs_store,
211 : : };
212 : :
213 : : static struct kobj_type blk_mq_ktype = {
214 : : .sysfs_ops = &blk_mq_sysfs_ops,
215 : : .release = blk_mq_sysfs_release,
216 : : };
217 : :
218 : : static struct kobj_type blk_mq_ctx_ktype = {
219 : : .sysfs_ops = &blk_mq_sysfs_ops,
220 : : .release = blk_mq_ctx_sysfs_release,
221 : : };
222 : :
223 : : static struct kobj_type blk_mq_hw_ktype = {
224 : : .sysfs_ops = &blk_mq_hw_sysfs_ops,
225 : : .default_groups = default_hw_ctx_groups,
226 : : .release = blk_mq_hw_sysfs_release,
227 : : };
228 : :
229 : 0 : static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx *hctx)
230 : : {
231 : 0 : struct blk_mq_ctx *ctx;
232 : 0 : int i;
233 : :
234 [ # # ]: 0 : if (!hctx->nr_ctx)
235 : : return;
236 : :
237 [ # # ]: 0 : hctx_for_each_ctx(hctx, ctx, i)
238 : 0 : kobject_del(&ctx->kobj);
239 : :
240 : 0 : kobject_del(&hctx->kobj);
241 : : }
242 : :
243 : 858 : static int blk_mq_register_hctx(struct blk_mq_hw_ctx *hctx)
244 : : {
245 : 858 : struct request_queue *q = hctx->queue;
246 : 858 : struct blk_mq_ctx *ctx;
247 : 858 : int i, ret;
248 : :
249 [ + - ]: 858 : if (!hctx->nr_ctx)
250 : : return 0;
251 : :
252 : 858 : ret = kobject_add(&hctx->kobj, q->mq_kobj, "%u", hctx->queue_num);
253 [ + - ]: 858 : if (ret)
254 : : return ret;
255 : :
256 [ + + ]: 1716 : hctx_for_each_ctx(hctx, ctx, i) {
257 : 858 : ret = kobject_add(&ctx->kobj, &hctx->kobj, "cpu%u", ctx->cpu);
258 [ + - ]: 858 : if (ret)
259 : : break;
260 : : }
261 : :
262 : : return ret;
263 : : }
264 : :
265 : 0 : void blk_mq_unregister_dev(struct device *dev, struct request_queue *q)
266 : : {
267 : 0 : struct blk_mq_hw_ctx *hctx;
268 : 0 : int i;
269 : :
270 : 0 : lockdep_assert_held(&q->sysfs_dir_lock);
271 : :
272 [ # # ]: 0 : queue_for_each_hw_ctx(q, hctx, i)
273 : 0 : blk_mq_unregister_hctx(hctx);
274 : :
275 : 0 : kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
276 : 0 : kobject_del(q->mq_kobj);
277 : 0 : kobject_put(&dev->kobj);
278 : :
279 : 0 : q->mq_sysfs_init_done = false;
280 : 0 : }
281 : :
282 : 858 : void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx)
283 : : {
284 : 858 : kobject_init(&hctx->kobj, &blk_mq_hw_ktype);
285 : 858 : }
286 : :
287 : 0 : void blk_mq_sysfs_deinit(struct request_queue *q)
288 : : {
289 : 0 : struct blk_mq_ctx *ctx;
290 : 0 : int cpu;
291 : :
292 [ # # ]: 0 : for_each_possible_cpu(cpu) {
293 : 0 : ctx = per_cpu_ptr(q->queue_ctx, cpu);
294 : 0 : kobject_put(&ctx->kobj);
295 : : }
296 : 0 : kobject_put(q->mq_kobj);
297 : 0 : }
298 : :
299 : 858 : void blk_mq_sysfs_init(struct request_queue *q)
300 : : {
301 : 858 : struct blk_mq_ctx *ctx;
302 : 858 : int cpu;
303 : :
304 : 858 : kobject_init(q->mq_kobj, &blk_mq_ktype);
305 : :
306 [ + + ]: 2574 : for_each_possible_cpu(cpu) {
307 : 858 : ctx = per_cpu_ptr(q->queue_ctx, cpu);
308 : :
309 : 858 : kobject_get(q->mq_kobj);
310 : 858 : kobject_init(&ctx->kobj, &blk_mq_ctx_ktype);
311 : : }
312 : 858 : }
313 : :
314 : 858 : int __blk_mq_register_dev(struct device *dev, struct request_queue *q)
315 : : {
316 : 858 : struct blk_mq_hw_ctx *hctx;
317 : 858 : int ret, i;
318 : :
319 [ - + ]: 858 : WARN_ON_ONCE(!q->kobj.parent);
320 : 858 : lockdep_assert_held(&q->sysfs_dir_lock);
321 : :
322 : 858 : ret = kobject_add(q->mq_kobj, kobject_get(&dev->kobj), "%s", "mq");
323 [ - + ]: 858 : if (ret < 0)
324 : 0 : goto out;
325 : :
326 : 858 : kobject_uevent(q->mq_kobj, KOBJ_ADD);
327 : :
328 [ + + ]: 2574 : queue_for_each_hw_ctx(q, hctx, i) {
329 : 858 : ret = blk_mq_register_hctx(hctx);
330 [ - + ]: 858 : if (ret)
331 : 0 : goto unreg;
332 : : }
333 : :
334 : 858 : q->mq_sysfs_init_done = true;
335 : :
336 : : out:
337 : : return ret;
338 : :
339 : : unreg:
340 [ # # ]: 0 : while (--i >= 0)
341 : 0 : blk_mq_unregister_hctx(q->queue_hw_ctx[i]);
342 : :
343 : 0 : kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
344 : 0 : kobject_del(q->mq_kobj);
345 : 0 : kobject_put(&dev->kobj);
346 : 0 : return ret;
347 : : }
348 : :
349 : 0 : void blk_mq_sysfs_unregister(struct request_queue *q)
350 : : {
351 : 0 : struct blk_mq_hw_ctx *hctx;
352 : 0 : int i;
353 : :
354 : 0 : mutex_lock(&q->sysfs_dir_lock);
355 [ # # ]: 0 : if (!q->mq_sysfs_init_done)
356 : 0 : goto unlock;
357 : :
358 [ # # ]: 0 : queue_for_each_hw_ctx(q, hctx, i)
359 : 0 : blk_mq_unregister_hctx(hctx);
360 : :
361 : 0 : unlock:
362 : 0 : mutex_unlock(&q->sysfs_dir_lock);
363 : 0 : }
364 : :
365 : 0 : int blk_mq_sysfs_register(struct request_queue *q)
366 : : {
367 : 0 : struct blk_mq_hw_ctx *hctx;
368 : 0 : int i, ret = 0;
369 : :
370 : 0 : mutex_lock(&q->sysfs_dir_lock);
371 [ # # ]: 0 : if (!q->mq_sysfs_init_done)
372 : 0 : goto unlock;
373 : :
374 [ # # ]: 0 : queue_for_each_hw_ctx(q, hctx, i) {
375 : 0 : ret = blk_mq_register_hctx(hctx);
376 [ # # ]: 0 : if (ret)
377 : : break;
378 : : }
379 : :
380 : 0 : unlock:
381 : 0 : mutex_unlock(&q->sysfs_dir_lock);
382 : :
383 : 0 : return ret;
384 : : }
|