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_hw_ctx_sysfs_entry {
49 struct attribute attr;
50 ssize_t (*show)(struct blk_mq_hw_ctx *, char *);
51 ssize_t (*store)(struct blk_mq_hw_ctx *, const char *, size_t);
54 static ssize_t blk_mq_hw_sysfs_show(struct kobject *kobj,
55 struct attribute *attr, char *page)
57 struct blk_mq_hw_ctx_sysfs_entry *entry;
58 struct blk_mq_hw_ctx *hctx;
59 struct request_queue *q;
62 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
63 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
69 mutex_lock(&q->sysfs_lock);
70 res = entry->show(hctx, page);
71 mutex_unlock(&q->sysfs_lock);
75 static ssize_t blk_mq_hw_sysfs_store(struct kobject *kobj,
76 struct attribute *attr, const char *page,
79 struct blk_mq_hw_ctx_sysfs_entry *entry;
80 struct blk_mq_hw_ctx *hctx;
81 struct request_queue *q;
84 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
85 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
91 mutex_lock(&q->sysfs_lock);
92 res = entry->store(hctx, page, length);
93 mutex_unlock(&q->sysfs_lock);
97 static ssize_t blk_mq_hw_sysfs_nr_tags_show(struct blk_mq_hw_ctx *hctx,
100 return sprintf(page, "%u\n", hctx->tags->nr_tags);
103 static ssize_t blk_mq_hw_sysfs_nr_reserved_tags_show(struct blk_mq_hw_ctx *hctx,
106 return sprintf(page, "%u\n", hctx->tags->nr_reserved_tags);
109 static ssize_t blk_mq_hw_sysfs_cpus_show(struct blk_mq_hw_ctx *hctx, char *page)
111 const size_t size = PAGE_SIZE - 1;
112 unsigned int i, first = 1;
113 int ret = 0, pos = 0;
115 for_each_cpu(i, hctx->cpumask) {
117 ret = snprintf(pos + page, size - pos, "%u", i);
119 ret = snprintf(pos + page, size - pos, ", %u", i);
121 if (ret >= size - pos)
128 ret = snprintf(pos + page, size + 1 - pos, "\n");
132 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags = {
133 .attr = {.name = "nr_tags", .mode = 0444 },
134 .show = blk_mq_hw_sysfs_nr_tags_show,
136 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags = {
137 .attr = {.name = "nr_reserved_tags", .mode = 0444 },
138 .show = blk_mq_hw_sysfs_nr_reserved_tags_show,
140 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus = {
141 .attr = {.name = "cpu_list", .mode = 0444 },
142 .show = blk_mq_hw_sysfs_cpus_show,
145 static struct attribute *default_hw_ctx_attrs[] = {
146 &blk_mq_hw_sysfs_nr_tags.attr,
147 &blk_mq_hw_sysfs_nr_reserved_tags.attr,
148 &blk_mq_hw_sysfs_cpus.attr,
151 ATTRIBUTE_GROUPS(default_hw_ctx);
153 static const struct sysfs_ops blk_mq_hw_sysfs_ops = {
154 .show = blk_mq_hw_sysfs_show,
155 .store = blk_mq_hw_sysfs_store,
158 static struct kobj_type blk_mq_ktype = {
159 .release = blk_mq_sysfs_release,
162 static struct kobj_type blk_mq_ctx_ktype = {
163 .release = blk_mq_ctx_sysfs_release,
166 static struct kobj_type blk_mq_hw_ktype = {
167 .sysfs_ops = &blk_mq_hw_sysfs_ops,
168 .default_groups = default_hw_ctx_groups,
169 .release = blk_mq_hw_sysfs_release,
172 static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx *hctx)
174 struct blk_mq_ctx *ctx;
180 hctx_for_each_ctx(hctx, ctx, i)
181 kobject_del(&ctx->kobj);
183 kobject_del(&hctx->kobj);
186 static int blk_mq_register_hctx(struct blk_mq_hw_ctx *hctx)
188 struct request_queue *q = hctx->queue;
189 struct blk_mq_ctx *ctx;
195 ret = kobject_add(&hctx->kobj, q->mq_kobj, "%u", hctx->queue_num);
199 hctx_for_each_ctx(hctx, ctx, i) {
200 ret = kobject_add(&ctx->kobj, &hctx->kobj, "cpu%u", ctx->cpu);
208 void blk_mq_unregister_dev(struct device *dev, struct request_queue *q)
210 struct blk_mq_hw_ctx *hctx;
213 lockdep_assert_held(&q->sysfs_dir_lock);
215 queue_for_each_hw_ctx(q, hctx, i)
216 blk_mq_unregister_hctx(hctx);
218 kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
219 kobject_del(q->mq_kobj);
220 kobject_put(&dev->kobj);
222 q->mq_sysfs_init_done = false;
225 void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx)
227 kobject_init(&hctx->kobj, &blk_mq_hw_ktype);
230 void blk_mq_sysfs_deinit(struct request_queue *q)
232 struct blk_mq_ctx *ctx;
235 for_each_possible_cpu(cpu) {
236 ctx = per_cpu_ptr(q->queue_ctx, cpu);
237 kobject_put(&ctx->kobj);
239 kobject_put(q->mq_kobj);
242 void blk_mq_sysfs_init(struct request_queue *q)
244 struct blk_mq_ctx *ctx;
247 kobject_init(q->mq_kobj, &blk_mq_ktype);
249 for_each_possible_cpu(cpu) {
250 ctx = per_cpu_ptr(q->queue_ctx, cpu);
252 kobject_get(q->mq_kobj);
253 kobject_init(&ctx->kobj, &blk_mq_ctx_ktype);
257 int __blk_mq_register_dev(struct device *dev, struct request_queue *q)
259 struct blk_mq_hw_ctx *hctx;
262 WARN_ON_ONCE(!q->kobj.parent);
263 lockdep_assert_held(&q->sysfs_dir_lock);
265 ret = kobject_add(q->mq_kobj, kobject_get(&dev->kobj), "%s", "mq");
269 kobject_uevent(q->mq_kobj, KOBJ_ADD);
271 queue_for_each_hw_ctx(q, hctx, i) {
272 ret = blk_mq_register_hctx(hctx);
277 q->mq_sysfs_init_done = true;
284 blk_mq_unregister_hctx(q->queue_hw_ctx[i]);
286 kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
287 kobject_del(q->mq_kobj);
288 kobject_put(&dev->kobj);
292 void blk_mq_sysfs_unregister(struct request_queue *q)
294 struct blk_mq_hw_ctx *hctx;
297 mutex_lock(&q->sysfs_dir_lock);
298 if (!q->mq_sysfs_init_done)
301 queue_for_each_hw_ctx(q, hctx, i)
302 blk_mq_unregister_hctx(hctx);
305 mutex_unlock(&q->sysfs_dir_lock);
308 int blk_mq_sysfs_register(struct request_queue *q)
310 struct blk_mq_hw_ctx *hctx;
313 mutex_lock(&q->sysfs_dir_lock);
314 if (!q->mq_sysfs_init_done)
317 queue_for_each_hw_ctx(q, hctx, i) {
318 ret = blk_mq_register_hctx(hctx);
324 mutex_unlock(&q->sysfs_dir_lock);