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 cancel_delayed_work_sync(&hctx
->run_work
);
41 if (hctx
->flags
& BLK_MQ_F_BLOCKING
)
42 cleanup_srcu_struct(hctx
->srcu
);
43 blk_free_flush_queue(hctx
->fq
);
44 sbitmap_free(&hctx
->ctx_map
);
45 free_cpumask_var(hctx
->cpumask
);
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);
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);
62 static ssize_t
blk_mq_sysfs_show(struct kobject
*kobj
, struct attribute
*attr
,
65 struct blk_mq_ctx_sysfs_entry
*entry
;
66 struct blk_mq_ctx
*ctx
;
67 struct request_queue
*q
;
70 entry
= container_of(attr
, struct blk_mq_ctx_sysfs_entry
, attr
);
71 ctx
= container_of(kobj
, struct blk_mq_ctx
, kobj
);
78 mutex_lock(&q
->sysfs_lock
);
79 if (!blk_queue_dying(q
))
80 res
= entry
->show(ctx
, page
);
81 mutex_unlock(&q
->sysfs_lock
);
85 static ssize_t
blk_mq_sysfs_store(struct kobject
*kobj
, struct attribute
*attr
,
86 const char *page
, size_t length
)
88 struct blk_mq_ctx_sysfs_entry
*entry
;
89 struct blk_mq_ctx
*ctx
;
90 struct request_queue
*q
;
93 entry
= container_of(attr
, struct blk_mq_ctx_sysfs_entry
, attr
);
94 ctx
= container_of(kobj
, struct blk_mq_ctx
, kobj
);
101 mutex_lock(&q
->sysfs_lock
);
102 if (!blk_queue_dying(q
))
103 res
= entry
->store(ctx
, page
, length
);
104 mutex_unlock(&q
->sysfs_lock
);
108 static ssize_t
blk_mq_hw_sysfs_show(struct kobject
*kobj
,
109 struct attribute
*attr
, char *page
)
111 struct blk_mq_hw_ctx_sysfs_entry
*entry
;
112 struct blk_mq_hw_ctx
*hctx
;
113 struct request_queue
*q
;
116 entry
= container_of(attr
, struct blk_mq_hw_ctx_sysfs_entry
, attr
);
117 hctx
= container_of(kobj
, struct blk_mq_hw_ctx
, kobj
);
124 mutex_lock(&q
->sysfs_lock
);
125 if (!blk_queue_dying(q
))
126 res
= entry
->show(hctx
, page
);
127 mutex_unlock(&q
->sysfs_lock
);
131 static ssize_t
blk_mq_hw_sysfs_store(struct kobject
*kobj
,
132 struct attribute
*attr
, const char *page
,
135 struct blk_mq_hw_ctx_sysfs_entry
*entry
;
136 struct blk_mq_hw_ctx
*hctx
;
137 struct request_queue
*q
;
140 entry
= container_of(attr
, struct blk_mq_hw_ctx_sysfs_entry
, attr
);
141 hctx
= container_of(kobj
, struct blk_mq_hw_ctx
, kobj
);
148 mutex_lock(&q
->sysfs_lock
);
149 if (!blk_queue_dying(q
))
150 res
= entry
->store(hctx
, page
, length
);
151 mutex_unlock(&q
->sysfs_lock
);
155 static ssize_t
blk_mq_hw_sysfs_nr_tags_show(struct blk_mq_hw_ctx
*hctx
,
158 return sprintf(page
, "%u\n", hctx
->tags
->nr_tags
);
161 static ssize_t
blk_mq_hw_sysfs_nr_reserved_tags_show(struct blk_mq_hw_ctx
*hctx
,
164 return sprintf(page
, "%u\n", hctx
->tags
->nr_reserved_tags
);
167 static ssize_t
blk_mq_hw_sysfs_cpus_show(struct blk_mq_hw_ctx
*hctx
, char *page
)
169 unsigned int i
, first
= 1;
172 for_each_cpu(i
, hctx
->cpumask
) {
174 ret
+= sprintf(ret
+ page
, "%u", i
);
176 ret
+= sprintf(ret
+ page
, ", %u", i
);
181 ret
+= sprintf(ret
+ page
, "\n");
185 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags
= {
186 .attr
= {.name
= "nr_tags", .mode
= 0444 },
187 .show
= blk_mq_hw_sysfs_nr_tags_show
,
189 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags
= {
190 .attr
= {.name
= "nr_reserved_tags", .mode
= 0444 },
191 .show
= blk_mq_hw_sysfs_nr_reserved_tags_show
,
193 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus
= {
194 .attr
= {.name
= "cpu_list", .mode
= 0444 },
195 .show
= blk_mq_hw_sysfs_cpus_show
,
198 static struct attribute
*default_hw_ctx_attrs
[] = {
199 &blk_mq_hw_sysfs_nr_tags
.attr
,
200 &blk_mq_hw_sysfs_nr_reserved_tags
.attr
,
201 &blk_mq_hw_sysfs_cpus
.attr
,
204 ATTRIBUTE_GROUPS(default_hw_ctx
);
206 static const struct sysfs_ops blk_mq_sysfs_ops
= {
207 .show
= blk_mq_sysfs_show
,
208 .store
= blk_mq_sysfs_store
,
211 static const struct sysfs_ops blk_mq_hw_sysfs_ops
= {
212 .show
= blk_mq_hw_sysfs_show
,
213 .store
= blk_mq_hw_sysfs_store
,
216 static struct kobj_type blk_mq_ktype
= {
217 .sysfs_ops
= &blk_mq_sysfs_ops
,
218 .release
= blk_mq_sysfs_release
,
221 static struct kobj_type blk_mq_ctx_ktype
= {
222 .sysfs_ops
= &blk_mq_sysfs_ops
,
223 .release
= blk_mq_ctx_sysfs_release
,
226 static struct kobj_type blk_mq_hw_ktype
= {
227 .sysfs_ops
= &blk_mq_hw_sysfs_ops
,
228 .default_groups
= default_hw_ctx_groups
,
229 .release
= blk_mq_hw_sysfs_release
,
232 static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx
*hctx
)
234 struct blk_mq_ctx
*ctx
;
240 hctx_for_each_ctx(hctx
, ctx
, i
)
241 kobject_del(&ctx
->kobj
);
243 kobject_del(&hctx
->kobj
);
246 static int blk_mq_register_hctx(struct blk_mq_hw_ctx
*hctx
)
248 struct request_queue
*q
= hctx
->queue
;
249 struct blk_mq_ctx
*ctx
;
255 ret
= kobject_add(&hctx
->kobj
, q
->mq_kobj
, "%u", hctx
->queue_num
);
259 hctx_for_each_ctx(hctx
, ctx
, i
) {
260 ret
= kobject_add(&ctx
->kobj
, &hctx
->kobj
, "cpu%u", ctx
->cpu
);
268 void blk_mq_unregister_dev(struct device
*dev
, struct request_queue
*q
)
270 struct blk_mq_hw_ctx
*hctx
;
273 lockdep_assert_held(&q
->sysfs_lock
);
275 queue_for_each_hw_ctx(q
, hctx
, i
)
276 blk_mq_unregister_hctx(hctx
);
278 kobject_uevent(q
->mq_kobj
, KOBJ_REMOVE
);
279 kobject_del(q
->mq_kobj
);
280 kobject_put(&dev
->kobj
);
282 q
->mq_sysfs_init_done
= false;
285 void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx
*hctx
)
287 kobject_init(&hctx
->kobj
, &blk_mq_hw_ktype
);
290 void blk_mq_sysfs_deinit(struct request_queue
*q
)
292 struct blk_mq_ctx
*ctx
;
295 for_each_possible_cpu(cpu
) {
296 ctx
= per_cpu_ptr(q
->queue_ctx
, cpu
);
297 kobject_put(&ctx
->kobj
);
299 kobject_put(q
->mq_kobj
);
302 void blk_mq_sysfs_init(struct request_queue
*q
)
304 struct blk_mq_ctx
*ctx
;
307 kobject_init(q
->mq_kobj
, &blk_mq_ktype
);
309 for_each_possible_cpu(cpu
) {
310 ctx
= per_cpu_ptr(q
->queue_ctx
, cpu
);
312 kobject_get(q
->mq_kobj
);
313 kobject_init(&ctx
->kobj
, &blk_mq_ctx_ktype
);
317 int __blk_mq_register_dev(struct device
*dev
, struct request_queue
*q
)
319 struct blk_mq_hw_ctx
*hctx
;
322 WARN_ON_ONCE(!q
->kobj
.parent
);
323 lockdep_assert_held(&q
->sysfs_lock
);
325 ret
= kobject_add(q
->mq_kobj
, kobject_get(&dev
->kobj
), "%s", "mq");
329 kobject_uevent(q
->mq_kobj
, KOBJ_ADD
);
331 queue_for_each_hw_ctx(q
, hctx
, i
) {
332 ret
= blk_mq_register_hctx(hctx
);
337 q
->mq_sysfs_init_done
= true;
344 blk_mq_unregister_hctx(q
->queue_hw_ctx
[i
]);
346 kobject_uevent(q
->mq_kobj
, KOBJ_REMOVE
);
347 kobject_del(q
->mq_kobj
);
348 kobject_put(&dev
->kobj
);
352 int blk_mq_register_dev(struct device
*dev
, struct request_queue
*q
)
356 mutex_lock(&q
->sysfs_lock
);
357 ret
= __blk_mq_register_dev(dev
, q
);
358 mutex_unlock(&q
->sysfs_lock
);
363 void blk_mq_sysfs_unregister(struct request_queue
*q
)
365 struct blk_mq_hw_ctx
*hctx
;
368 mutex_lock(&q
->sysfs_lock
);
369 if (!q
->mq_sysfs_init_done
)
372 queue_for_each_hw_ctx(q
, hctx
, i
)
373 blk_mq_unregister_hctx(hctx
);
376 mutex_unlock(&q
->sysfs_lock
);
379 int blk_mq_sysfs_register(struct request_queue
*q
)
381 struct blk_mq_hw_ctx
*hctx
;
384 mutex_lock(&q
->sysfs_lock
);
385 if (!q
->mq_sysfs_init_done
)
388 queue_for_each_hw_ctx(q
, hctx
, i
) {
389 ret
= blk_mq_register_hctx(hctx
);
395 mutex_unlock(&q
->sysfs_lock
);