blob: 5dafd7a8ec9137431d12c99983a2ece1aa136a6b [file] [log] [blame]
Christoph Hellwig3dcf60b2019-04-30 14:42:43 -04001// SPDX-License-Identifier: GPL-2.0
Jens Axboe320ae512013-10-24 09:20:05 +01002#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>
Ming Leic7e2d942019-04-30 09:52:25 +080014#include "blk.h"
Jens Axboe320ae512013-10-24 09:20:05 +010015#include "blk-mq.h"
16#include "blk-mq-tag.h"
17
18static void blk_mq_sysfs_release(struct kobject *kobj)
19{
Ming Lei1db49092018-11-20 09:44:35 +080020 struct blk_mq_ctxs *ctxs = container_of(kobj, struct blk_mq_ctxs, kobj);
21
22 free_percpu(ctxs->queue_ctx);
23 kfree(ctxs);
24}
25
26static void blk_mq_ctx_sysfs_release(struct kobject *kobj)
27{
28 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 kobject_put(&ctx->ctxs->kobj);
Jens Axboe320ae512013-10-24 09:20:05 +010032}
33
Ming Lei6c8b2322017-02-22 18:14:01 +080034static void blk_mq_hw_sysfs_release(struct kobject *kobj)
35{
36 struct blk_mq_hw_ctx *hctx = container_of(kobj, struct blk_mq_hw_ctx,
37 kobj);
Ming Leic7e2d942019-04-30 09:52:25 +080038
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);
Ming Lei01388df2017-02-22 18:14:02 +080043 free_cpumask_var(hctx->cpumask);
Ming Lei6c8b2322017-02-22 18:14:01 +080044 kfree(hctx->ctxs);
45 kfree(hctx);
46}
47
Jens Axboe320ae512013-10-24 09:20:05 +010048struct 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);
52};
53
54struct 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);
58};
59
60static ssize_t blk_mq_sysfs_show(struct kobject *kobj, struct attribute *attr,
61 char *page)
62{
63 struct blk_mq_ctx_sysfs_entry *entry;
64 struct blk_mq_ctx *ctx;
65 struct request_queue *q;
66 ssize_t res;
67
68 entry = container_of(attr, struct blk_mq_ctx_sysfs_entry, attr);
69 ctx = container_of(kobj, struct blk_mq_ctx, kobj);
70 q = ctx->queue;
71
72 if (!entry->show)
73 return -EIO;
74
75 res = -ENOENT;
76 mutex_lock(&q->sysfs_lock);
77 if (!blk_queue_dying(q))
78 res = entry->show(ctx, page);
79 mutex_unlock(&q->sysfs_lock);
80 return res;
81}
82
83static ssize_t blk_mq_sysfs_store(struct kobject *kobj, struct attribute *attr,
84 const char *page, size_t length)
85{
86 struct blk_mq_ctx_sysfs_entry *entry;
87 struct blk_mq_ctx *ctx;
88 struct request_queue *q;
89 ssize_t res;
90
91 entry = container_of(attr, struct blk_mq_ctx_sysfs_entry, attr);
92 ctx = container_of(kobj, struct blk_mq_ctx, kobj);
93 q = ctx->queue;
94
95 if (!entry->store)
96 return -EIO;
97
98 res = -ENOENT;
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);
103 return res;
104}
105
106static ssize_t blk_mq_hw_sysfs_show(struct kobject *kobj,
107 struct attribute *attr, char *page)
108{
109 struct blk_mq_hw_ctx_sysfs_entry *entry;
110 struct blk_mq_hw_ctx *hctx;
111 struct request_queue *q;
112 ssize_t res;
113
114 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
115 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
116 q = hctx->queue;
117
118 if (!entry->show)
119 return -EIO;
120
121 res = -ENOENT;
122 mutex_lock(&q->sysfs_lock);
123 if (!blk_queue_dying(q))
124 res = entry->show(hctx, page);
125 mutex_unlock(&q->sysfs_lock);
126 return res;
127}
128
129static ssize_t blk_mq_hw_sysfs_store(struct kobject *kobj,
130 struct attribute *attr, const char *page,
131 size_t length)
132{
133 struct blk_mq_hw_ctx_sysfs_entry *entry;
134 struct blk_mq_hw_ctx *hctx;
135 struct request_queue *q;
136 ssize_t res;
137
138 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
139 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
140 q = hctx->queue;
141
142 if (!entry->store)
143 return -EIO;
144
145 res = -ENOENT;
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);
150 return res;
151}
152
Omar Sandovald96b37c2017-01-25 08:06:46 -0800153static ssize_t blk_mq_hw_sysfs_nr_tags_show(struct blk_mq_hw_ctx *hctx,
154 char *page)
Jens Axboebd166ef2017-01-17 06:03:22 -0700155{
Omar Sandovald96b37c2017-01-25 08:06:46 -0800156 return sprintf(page, "%u\n", hctx->tags->nr_tags);
Jens Axboebd166ef2017-01-17 06:03:22 -0700157}
158
Omar Sandovald96b37c2017-01-25 08:06:46 -0800159static ssize_t blk_mq_hw_sysfs_nr_reserved_tags_show(struct blk_mq_hw_ctx *hctx,
160 char *page)
Jens Axboe320ae512013-10-24 09:20:05 +0100161{
Omar Sandovald96b37c2017-01-25 08:06:46 -0800162 return sprintf(page, "%u\n", hctx->tags->nr_reserved_tags);
Jens Axboe320ae512013-10-24 09:20:05 +0100163}
164
Jens Axboe676141e2014-03-20 13:29:18 -0600165static ssize_t blk_mq_hw_sysfs_cpus_show(struct blk_mq_hw_ctx *hctx, char *page)
166{
Ming Lei285b0732019-11-02 16:02:15 +0800167 const size_t size = PAGE_SIZE - 1;
Jens Axboecb2da432014-04-09 10:53:21 -0600168 unsigned int i, first = 1;
Ming Lei285b0732019-11-02 16:02:15 +0800169 int ret = 0, pos = 0;
Jens Axboe676141e2014-03-20 13:29:18 -0600170
Jens Axboecb2da432014-04-09 10:53:21 -0600171 for_each_cpu(i, hctx->cpumask) {
Jens Axboe676141e2014-03-20 13:29:18 -0600172 if (first)
Ming Lei285b0732019-11-02 16:02:15 +0800173 ret = snprintf(pos + page, size - pos, "%u", i);
Jens Axboe676141e2014-03-20 13:29:18 -0600174 else
Ming Lei285b0732019-11-02 16:02:15 +0800175 ret = snprintf(pos + page, size - pos, ", %u", i);
176
177 if (ret >= size - pos)
178 break;
Jens Axboe676141e2014-03-20 13:29:18 -0600179
180 first = 0;
Ming Lei285b0732019-11-02 16:02:15 +0800181 pos += ret;
Jens Axboe676141e2014-03-20 13:29:18 -0600182 }
183
Ming Leie13c3c212019-11-04 16:26:53 +0800184 ret = snprintf(pos + page, size + 1 - pos, "\n");
Ming Lei285b0732019-11-02 16:02:15 +0800185 return pos + ret;
Jens Axboe676141e2014-03-20 13:29:18 -0600186}
187
Omar Sandovald96b37c2017-01-25 08:06:46 -0800188static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags = {
Joe Perches5657a812018-05-24 13:38:59 -0600189 .attr = {.name = "nr_tags", .mode = 0444 },
Omar Sandovald96b37c2017-01-25 08:06:46 -0800190 .show = blk_mq_hw_sysfs_nr_tags_show,
191};
192static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags = {
Joe Perches5657a812018-05-24 13:38:59 -0600193 .attr = {.name = "nr_reserved_tags", .mode = 0444 },
Omar Sandovald96b37c2017-01-25 08:06:46 -0800194 .show = blk_mq_hw_sysfs_nr_reserved_tags_show,
195};
Jens Axboe676141e2014-03-20 13:29:18 -0600196static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus = {
Joe Perches5657a812018-05-24 13:38:59 -0600197 .attr = {.name = "cpu_list", .mode = 0444 },
Jens Axboe676141e2014-03-20 13:29:18 -0600198 .show = blk_mq_hw_sysfs_cpus_show,
199};
Jens Axboe320ae512013-10-24 09:20:05 +0100200
201static struct attribute *default_hw_ctx_attrs[] = {
Omar Sandovald96b37c2017-01-25 08:06:46 -0800202 &blk_mq_hw_sysfs_nr_tags.attr,
203 &blk_mq_hw_sysfs_nr_reserved_tags.attr,
Jens Axboe676141e2014-03-20 13:29:18 -0600204 &blk_mq_hw_sysfs_cpus.attr,
Jens Axboe320ae512013-10-24 09:20:05 +0100205 NULL,
206};
Kimberly Brown800f5aa2019-04-01 22:51:30 -0400207ATTRIBUTE_GROUPS(default_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100208
209static const struct sysfs_ops blk_mq_sysfs_ops = {
210 .show = blk_mq_sysfs_show,
211 .store = blk_mq_sysfs_store,
212};
213
214static const struct sysfs_ops blk_mq_hw_sysfs_ops = {
215 .show = blk_mq_hw_sysfs_show,
216 .store = blk_mq_hw_sysfs_store,
217};
218
219static struct kobj_type blk_mq_ktype = {
220 .sysfs_ops = &blk_mq_sysfs_ops,
221 .release = blk_mq_sysfs_release,
222};
223
224static struct kobj_type blk_mq_ctx_ktype = {
225 .sysfs_ops = &blk_mq_sysfs_ops,
Ming Lei1db49092018-11-20 09:44:35 +0800226 .release = blk_mq_ctx_sysfs_release,
Jens Axboe320ae512013-10-24 09:20:05 +0100227};
228
229static struct kobj_type blk_mq_hw_ktype = {
230 .sysfs_ops = &blk_mq_hw_sysfs_ops,
Kimberly Brown800f5aa2019-04-01 22:51:30 -0400231 .default_groups = default_hw_ctx_groups,
Ming Lei6c8b2322017-02-22 18:14:01 +0800232 .release = blk_mq_hw_sysfs_release,
Jens Axboe320ae512013-10-24 09:20:05 +0100233};
234
Fengguang Wuee3c5db2014-05-30 10:31:13 -0600235static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600236{
237 struct blk_mq_ctx *ctx;
238 int i;
239
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900240 if (!hctx->nr_ctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600241 return;
242
243 hctx_for_each_ctx(hctx, ctx, i)
244 kobject_del(&ctx->kobj);
245
246 kobject_del(&hctx->kobj);
247}
248
Fengguang Wuee3c5db2014-05-30 10:31:13 -0600249static int blk_mq_register_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600250{
251 struct request_queue *q = hctx->queue;
252 struct blk_mq_ctx *ctx;
253 int i, ret;
254
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900255 if (!hctx->nr_ctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600256 return 0;
257
Ming Lei1db49092018-11-20 09:44:35 +0800258 ret = kobject_add(&hctx->kobj, q->mq_kobj, "%u", hctx->queue_num);
Jens Axboe67aec142014-05-30 08:25:36 -0600259 if (ret)
260 return ret;
261
262 hctx_for_each_ctx(hctx, ctx, i) {
263 ret = kobject_add(&ctx->kobj, &hctx->kobj, "cpu%u", ctx->cpu);
264 if (ret)
265 break;
266 }
267
268 return ret;
269}
270
Mike Snitzer667257e2018-01-11 14:11:01 -0500271void blk_mq_unregister_dev(struct device *dev, struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100272{
Andrey Vagin85157362013-12-06 09:06:41 +0400273 struct blk_mq_hw_ctx *hctx;
Ming Lei7ea5fe32017-02-22 18:14:00 +0800274 int i;
Andrey Vagin85157362013-12-06 09:06:41 +0400275
Ming Leicecf5d82019-08-27 19:01:48 +0800276 lockdep_assert_held(&q->sysfs_dir_lock);
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700277
Ming Lei6c8b2322017-02-22 18:14:01 +0800278 queue_for_each_hw_ctx(q, hctx, i)
Jens Axboe67aec142014-05-30 08:25:36 -0600279 blk_mq_unregister_hctx(hctx);
280
Ming Lei1db49092018-11-20 09:44:35 +0800281 kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
282 kobject_del(q->mq_kobj);
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200283 kobject_put(&dev->kobj);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900284
285 q->mq_sysfs_init_done = false;
Jens Axboec0f3fd22016-08-02 08:45:44 -0600286}
287
Keith Busch868f2f02015-12-17 17:08:14 -0700288void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx)
289{
290 kobject_init(&hctx->kobj, &blk_mq_hw_ktype);
291}
292
Ming Lei7ea5fe32017-02-22 18:14:00 +0800293void blk_mq_sysfs_deinit(struct request_queue *q)
294{
295 struct blk_mq_ctx *ctx;
296 int cpu;
297
298 for_each_possible_cpu(cpu) {
299 ctx = per_cpu_ptr(q->queue_ctx, cpu);
300 kobject_put(&ctx->kobj);
301 }
Ming Lei1db49092018-11-20 09:44:35 +0800302 kobject_put(q->mq_kobj);
Ming Lei7ea5fe32017-02-22 18:14:00 +0800303}
304
Ming Lei737f98c2017-02-22 18:13:59 +0800305void blk_mq_sysfs_init(struct request_queue *q)
Jens Axboe67aec142014-05-30 08:25:36 -0600306{
Jens Axboe67aec142014-05-30 08:25:36 -0600307 struct blk_mq_ctx *ctx;
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100308 int cpu;
Jens Axboe67aec142014-05-30 08:25:36 -0600309
Ming Lei1db49092018-11-20 09:44:35 +0800310 kobject_init(q->mq_kobj, &blk_mq_ktype);
Jens Axboe67aec142014-05-30 08:25:36 -0600311
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100312 for_each_possible_cpu(cpu) {
313 ctx = per_cpu_ptr(q->queue_ctx, cpu);
Ming Lei1db49092018-11-20 09:44:35 +0800314
315 kobject_get(q->mq_kobj);
Takashi Iwai06a41a92014-12-10 16:38:30 +0100316 kobject_init(&ctx->kobj, &blk_mq_ctx_ktype);
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100317 }
Jens Axboe67aec142014-05-30 08:25:36 -0600318}
319
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700320int __blk_mq_register_dev(struct device *dev, struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100321{
Jens Axboe320ae512013-10-24 09:20:05 +0100322 struct blk_mq_hw_ctx *hctx;
Jens Axboe67aec142014-05-30 08:25:36 -0600323 int ret, i;
Jens Axboe320ae512013-10-24 09:20:05 +0100324
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700325 WARN_ON_ONCE(!q->kobj.parent);
Ming Leicecf5d82019-08-27 19:01:48 +0800326 lockdep_assert_held(&q->sysfs_dir_lock);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900327
Ming Lei1db49092018-11-20 09:44:35 +0800328 ret = kobject_add(q->mq_kobj, kobject_get(&dev->kobj), "%s", "mq");
Jens Axboe320ae512013-10-24 09:20:05 +0100329 if (ret < 0)
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900330 goto out;
Jens Axboe320ae512013-10-24 09:20:05 +0100331
Ming Lei1db49092018-11-20 09:44:35 +0800332 kobject_uevent(q->mq_kobj, KOBJ_ADD);
Jens Axboe320ae512013-10-24 09:20:05 +0100333
334 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe67aec142014-05-30 08:25:36 -0600335 ret = blk_mq_register_hctx(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100336 if (ret)
Bart Van Asschef05d1ba72017-04-26 13:47:51 -0700337 goto unreg;
Jens Axboe320ae512013-10-24 09:20:05 +0100338 }
339
Bart Van Asschef05d1ba72017-04-26 13:47:51 -0700340 q->mq_sysfs_init_done = true;
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700341
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900342out:
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700343 return ret;
Bart Van Asschef05d1ba72017-04-26 13:47:51 -0700344
345unreg:
346 while (--i >= 0)
347 blk_mq_unregister_hctx(q->queue_hw_ctx[i]);
348
Ming Lei1db49092018-11-20 09:44:35 +0800349 kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
350 kobject_del(q->mq_kobj);
Bart Van Asschef05d1ba72017-04-26 13:47:51 -0700351 kobject_put(&dev->kobj);
352 return ret;
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700353}
354
Jens Axboe67aec142014-05-30 08:25:36 -0600355void blk_mq_sysfs_unregister(struct request_queue *q)
356{
357 struct blk_mq_hw_ctx *hctx;
358 int i;
359
Ming Leicecf5d82019-08-27 19:01:48 +0800360 mutex_lock(&q->sysfs_dir_lock);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900361 if (!q->mq_sysfs_init_done)
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700362 goto unlock;
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900363
Jens Axboe67aec142014-05-30 08:25:36 -0600364 queue_for_each_hw_ctx(q, hctx, i)
365 blk_mq_unregister_hctx(hctx);
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700366
367unlock:
Ming Leicecf5d82019-08-27 19:01:48 +0800368 mutex_unlock(&q->sysfs_dir_lock);
Jens Axboe67aec142014-05-30 08:25:36 -0600369}
370
371int blk_mq_sysfs_register(struct request_queue *q)
372{
373 struct blk_mq_hw_ctx *hctx;
374 int i, ret = 0;
375
Ming Leicecf5d82019-08-27 19:01:48 +0800376 mutex_lock(&q->sysfs_dir_lock);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900377 if (!q->mq_sysfs_init_done)
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700378 goto unlock;
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900379
Jens Axboe67aec142014-05-30 08:25:36 -0600380 queue_for_each_hw_ctx(q, hctx, i) {
381 ret = blk_mq_register_hctx(hctx);
382 if (ret)
383 break;
384 }
385
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700386unlock:
Ming Leicecf5d82019-08-27 19:01:48 +0800387 mutex_unlock(&q->sysfs_dir_lock);
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700388
Jens Axboe67aec142014-05-30 08:25:36 -0600389 return ret;
390}