1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kernel.h>
3 #include <linux/module.h>
4 #include <linux/backing-dev.h>
6 #include <linux/blkdev.h>
8 #include <linux/init.h>
9 #include <linux/slab.h>
10 #include <linux/workqueue.h>
11 #include <linux/smp.h>
13 #include <linux/blk-mq.h>
16 #include "blk-mq-tag.h"
18 static void blk_mq_sysfs_release(struct kobject
*kobj
)
20 struct blk_mq_ctxs
*ctxs
= container_of(kobj
, struct blk_mq_ctxs
, kobj
);
22 free_percpu(ctxs
->queue_ctx
);
26 static void blk_mq_ctx_sysfs_release(struct kobject
*kobj
)
28 struct blk_mq_ctx
*ctx
= container_of(kobj
, struct blk_mq_ctx
, kobj
);
30 /* ctx->ctxs won't be released until all ctx are freed */
31 kobject_put(&ctx
->ctxs
->kobj
);
34 static void blk_mq_hw_sysfs_release(struct kobject
*kobj
)
36 struct blk_mq_hw_ctx
*hctx
= container_of(kobj
, struct blk_mq_hw_ctx
,
39 if (hctx
->flags
& BLK_MQ_F_BLOCKING
)
40 cleanup_srcu_struct(hctx
->srcu
);
41 blk_free_flush_queue(hctx
->fq
);
42 sbitmap_free(&hctx
->ctx_map
);
43 free_cpumask_var(hctx
->cpumask
);
48 struct blk_mq_ctx_sysfs_entry
{
49 struct attribute attr
;
50 ssize_t (*show
)(struct blk_mq_ctx
*, char *);
51 ssize_t (*store
)(struct blk_mq_ctx
*, const char *, size_t);
54 struct blk_mq_hw_ctx_sysfs_entry
{
55 struct attribute attr
;
56 ssize_t (*show
)(struct blk_mq_hw_ctx
*, char *);
57 ssize_t (*store
)(struct blk_mq_hw_ctx
*, const char *, size_t);
60 static ssize_t
blk_mq_sysfs_show(struct kobject
*kobj
, struct attribute
*attr
,
63 struct blk_mq_ctx_sysfs_entry
*entry
;
64 struct blk_mq_ctx
*ctx
;
65 struct request_queue
*q
;
68 entry
= container_of(attr
, struct blk_mq_ctx_sysfs_entry
, attr
);
69 ctx
= container_of(kobj
, struct blk_mq_ctx
, kobj
);
76 mutex_lock(&q
->sysfs_lock
);
77 if (!blk_queue_dying(q
))
78 res
= entry
->show(ctx
, page
);
79 mutex_unlock(&q
->sysfs_lock
);
83 static ssize_t
blk_mq_sysfs_store(struct kobject
*kobj
, struct attribute
*attr
,
84 const char *page
, size_t length
)
86 struct blk_mq_ctx_sysfs_entry
*entry
;
87 struct blk_mq_ctx
*ctx
;
88 struct request_queue
*q
;
91 entry
= container_of(attr
, struct blk_mq_ctx_sysfs_entry
, attr
);
92 ctx
= container_of(kobj
, struct blk_mq_ctx
, kobj
);
99 mutex_lock(&q
->sysfs_lock
);
100 if (!blk_queue_dying(q
))
101 res
= entry
->store(ctx
, page
, length
);
102 mutex_unlock(&q
->sysfs_lock
);
106 static ssize_t
blk_mq_hw_sysfs_show(struct kobject
*kobj
,
107 struct attribute
*attr
, char *page
)
109 struct blk_mq_hw_ctx_sysfs_entry
*entry
;
110 struct blk_mq_hw_ctx
*hctx
;
111 struct request_queue
*q
;
114 entry
= container_of(attr
, struct blk_mq_hw_ctx_sysfs_entry
, attr
);
115 hctx
= container_of(kobj
, struct blk_mq_hw_ctx
, kobj
);
122 mutex_lock(&q
->sysfs_lock
);
123 if (!blk_queue_dying(q
))
124 res
= entry
->show(hctx
, page
);
125 mutex_unlock(&q
->sysfs_lock
);
129 static ssize_t
blk_mq_hw_sysfs_store(struct kobject
*kobj
,
130 struct attribute
*attr
, const char *page
,
133 struct blk_mq_hw_ctx_sysfs_entry
*entry
;
134 struct blk_mq_hw_ctx
*hctx
;
135 struct request_queue
*q
;
138 entry
= container_of(attr
, struct blk_mq_hw_ctx_sysfs_entry
, attr
);
139 hctx
= container_of(kobj
, struct blk_mq_hw_ctx
, kobj
);
146 mutex_lock(&q
->sysfs_lock
);
147 if (!blk_queue_dying(q
))
148 res
= entry
->store(hctx
, page
, length
);
149 mutex_unlock(&q
->sysfs_lock
);
153 static ssize_t
blk_mq_hw_sysfs_nr_tags_show(struct blk_mq_hw_ctx
*hctx
,
156 return sprintf(page
, "%u\n", hctx
->tags
->nr_tags
);
159 static ssize_t
blk_mq_hw_sysfs_nr_reserved_tags_show(struct blk_mq_hw_ctx
*hctx
,
162 return sprintf(page
, "%u\n", hctx
->tags
->nr_reserved_tags
);
165 static ssize_t
blk_mq_hw_sysfs_cpus_show(struct blk_mq_hw_ctx
*hctx
, char *page
)
167 unsigned int i
, first
= 1;
170 for_each_cpu(i
, hctx
->cpumask
) {
172 ret
+= sprintf(ret
+ page
, "%u", i
);
174 ret
+= sprintf(ret
+ page
, ", %u", i
);
179 ret
+= sprintf(ret
+ page
, "\n");
183 static struct attribute
*default_ctx_attrs
[] = {
187 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags
= {
188 .attr
= {.name
= "nr_tags", .mode
= 0444 },
189 .show
= blk_mq_hw_sysfs_nr_tags_show
,
191 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags
= {
192 .attr
= {.name
= "nr_reserved_tags", .mode
= 0444 },
193 .show
= blk_mq_hw_sysfs_nr_reserved_tags_show
,
195 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus
= {
196 .attr
= {.name
= "cpu_list", .mode
= 0444 },
197 .show
= blk_mq_hw_sysfs_cpus_show
,
200 static struct attribute
*default_hw_ctx_attrs
[] = {
201 &blk_mq_hw_sysfs_nr_tags
.attr
,
202 &blk_mq_hw_sysfs_nr_reserved_tags
.attr
,
203 &blk_mq_hw_sysfs_cpus
.attr
,
207 static const struct sysfs_ops blk_mq_sysfs_ops
= {
208 .show
= blk_mq_sysfs_show
,
209 .store
= blk_mq_sysfs_store
,
212 static const struct sysfs_ops blk_mq_hw_sysfs_ops
= {
213 .show
= blk_mq_hw_sysfs_show
,
214 .store
= blk_mq_hw_sysfs_store
,
217 static struct kobj_type blk_mq_ktype
= {
218 .sysfs_ops
= &blk_mq_sysfs_ops
,
219 .release
= blk_mq_sysfs_release
,
222 static struct kobj_type blk_mq_ctx_ktype
= {
223 .sysfs_ops
= &blk_mq_sysfs_ops
,
224 .default_attrs
= default_ctx_attrs
,
225 .release
= blk_mq_ctx_sysfs_release
,
228 static struct kobj_type blk_mq_hw_ktype
= {
229 .sysfs_ops
= &blk_mq_hw_sysfs_ops
,
230 .default_attrs
= default_hw_ctx_attrs
,
231 .release
= blk_mq_hw_sysfs_release
,
234 static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx
*hctx
)
236 struct blk_mq_ctx
*ctx
;
242 hctx_for_each_ctx(hctx
, ctx
, i
)
243 kobject_del(&ctx
->kobj
);
245 kobject_del(&hctx
->kobj
);
248 static int blk_mq_register_hctx(struct blk_mq_hw_ctx
*hctx
)
250 struct request_queue
*q
= hctx
->queue
;
251 struct blk_mq_ctx
*ctx
;
257 ret
= kobject_add(&hctx
->kobj
, q
->mq_kobj
, "%u", hctx
->queue_num
);
261 hctx_for_each_ctx(hctx
, ctx
, i
) {
262 ret
= kobject_add(&ctx
->kobj
, &hctx
->kobj
, "cpu%u", ctx
->cpu
);
270 void blk_mq_unregister_dev(struct device
*dev
, struct request_queue
*q
)
272 struct blk_mq_hw_ctx
*hctx
;
275 lockdep_assert_held(&q
->sysfs_lock
);
277 queue_for_each_hw_ctx(q
, hctx
, i
)
278 blk_mq_unregister_hctx(hctx
);
280 kobject_uevent(q
->mq_kobj
, KOBJ_REMOVE
);
281 kobject_del(q
->mq_kobj
);
282 kobject_put(&dev
->kobj
);
284 q
->mq_sysfs_init_done
= false;
287 void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx
*hctx
)
289 kobject_init(&hctx
->kobj
, &blk_mq_hw_ktype
);
292 void blk_mq_sysfs_deinit(struct request_queue
*q
)
294 struct blk_mq_ctx
*ctx
;
297 for_each_possible_cpu(cpu
) {
298 ctx
= per_cpu_ptr(q
->queue_ctx
, cpu
);
299 kobject_put(&ctx
->kobj
);
301 kobject_put(q
->mq_kobj
);
304 void blk_mq_sysfs_init(struct request_queue
*q
)
306 struct blk_mq_ctx
*ctx
;
309 kobject_init(q
->mq_kobj
, &blk_mq_ktype
);
311 for_each_possible_cpu(cpu
) {
312 ctx
= per_cpu_ptr(q
->queue_ctx
, cpu
);
314 kobject_get(q
->mq_kobj
);
315 kobject_init(&ctx
->kobj
, &blk_mq_ctx_ktype
);
319 int __blk_mq_register_dev(struct device
*dev
, struct request_queue
*q
)
321 struct blk_mq_hw_ctx
*hctx
;
324 WARN_ON_ONCE(!q
->kobj
.parent
);
325 lockdep_assert_held(&q
->sysfs_lock
);
327 ret
= kobject_add(q
->mq_kobj
, kobject_get(&dev
->kobj
), "%s", "mq");
331 kobject_uevent(q
->mq_kobj
, KOBJ_ADD
);
333 queue_for_each_hw_ctx(q
, hctx
, i
) {
334 ret
= blk_mq_register_hctx(hctx
);
339 q
->mq_sysfs_init_done
= true;
346 blk_mq_unregister_hctx(q
->queue_hw_ctx
[i
]);
348 kobject_uevent(q
->mq_kobj
, KOBJ_REMOVE
);
349 kobject_del(q
->mq_kobj
);
350 kobject_put(&dev
->kobj
);
354 int blk_mq_register_dev(struct device
*dev
, struct request_queue
*q
)
358 mutex_lock(&q
->sysfs_lock
);
359 ret
= __blk_mq_register_dev(dev
, q
);
360 mutex_unlock(&q
->sysfs_lock
);
365 void blk_mq_sysfs_unregister(struct request_queue
*q
)
367 struct blk_mq_hw_ctx
*hctx
;
370 mutex_lock(&q
->sysfs_lock
);
371 if (!q
->mq_sysfs_init_done
)
374 queue_for_each_hw_ctx(q
, hctx
, i
)
375 blk_mq_unregister_hctx(hctx
);
378 mutex_unlock(&q
->sysfs_lock
);
381 int blk_mq_sysfs_register(struct request_queue
*q
)
383 struct blk_mq_hw_ctx
*hctx
;
386 mutex_lock(&q
->sysfs_lock
);
387 if (!q
->mq_sysfs_init_done
)
390 queue_for_each_hw_ctx(q
, hctx
, i
) {
391 ret
= blk_mq_register_hctx(hctx
);
397 mutex_unlock(&q
->sysfs_lock
);