blob: 062229395a507caa133fc1b36a57f6cae5af810a [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
Ming Lei1b978712019-04-30 09:52:28 +080039 cancel_delayed_work_sync(&hctx->run_work);
40
Ming Leic7e2d942019-04-30 09:52:25 +080041 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);
Ming Lei01388df2017-02-22 18:14:02 +080045 free_cpumask_var(hctx->cpumask);
Ming Lei6c8b2322017-02-22 18:14:01 +080046 kfree(hctx->ctxs);
47 kfree(hctx);
48}
49
Jens Axboe320ae512013-10-24 09:20:05 +010050struct 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
56struct 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
62static ssize_t blk_mq_sysfs_show(struct kobject *kobj, struct attribute *attr,
63 char *page)
64{
65 struct blk_mq_ctx_sysfs_entry *entry;
66 struct blk_mq_ctx *ctx;
67 struct request_queue *q;
68 ssize_t res;
69
70 entry = container_of(attr, struct blk_mq_ctx_sysfs_entry, attr);
71 ctx = container_of(kobj, struct blk_mq_ctx, kobj);
72 q = ctx->queue;
73
74 if (!entry->show)
75 return -EIO;
76
Jens Axboe320ae512013-10-24 09:20:05 +010077 mutex_lock(&q->sysfs_lock);
Bart Van Asschebae85c12019-09-30 16:00:43 -070078 res = entry->show(ctx, page);
Jens Axboe320ae512013-10-24 09:20:05 +010079 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
Jens Axboe320ae512013-10-24 09:20:05 +010098 mutex_lock(&q->sysfs_lock);
Bart Van Asschebae85c12019-09-30 16:00:43 -070099 res = entry->store(ctx, page, length);
Jens Axboe320ae512013-10-24 09:20:05 +0100100 mutex_unlock(&q->sysfs_lock);
101 return res;
102}
103
104static ssize_t blk_mq_hw_sysfs_show(struct kobject *kobj,
105 struct attribute *attr, char *page)
106{
107 struct blk_mq_hw_ctx_sysfs_entry *entry;
108 struct blk_mq_hw_ctx *hctx;
109 struct request_queue *q;
110 ssize_t res;
111
112 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
113 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
114 q = hctx->queue;
115
116 if (!entry->show)
117 return -EIO;
118
Jens Axboe320ae512013-10-24 09:20:05 +0100119 mutex_lock(&q->sysfs_lock);
Bart Van Asschebae85c12019-09-30 16:00:43 -0700120 res = entry->show(hctx, page);
Jens Axboe320ae512013-10-24 09:20:05 +0100121 mutex_unlock(&q->sysfs_lock);
122 return res;
123}
124
125static ssize_t blk_mq_hw_sysfs_store(struct kobject *kobj,
126 struct attribute *attr, const char *page,
127 size_t length)
128{
129 struct blk_mq_hw_ctx_sysfs_entry *entry;
130 struct blk_mq_hw_ctx *hctx;
131 struct request_queue *q;
132 ssize_t res;
133
134 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
135 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
136 q = hctx->queue;
137
138 if (!entry->store)
139 return -EIO;
140
Jens Axboe320ae512013-10-24 09:20:05 +0100141 mutex_lock(&q->sysfs_lock);
Bart Van Asschebae85c12019-09-30 16:00:43 -0700142 res = entry->store(hctx, page, length);
Jens Axboe320ae512013-10-24 09:20:05 +0100143 mutex_unlock(&q->sysfs_lock);
144 return res;
145}
146
Omar Sandovald96b37c2017-01-25 08:06:46 -0800147static ssize_t blk_mq_hw_sysfs_nr_tags_show(struct blk_mq_hw_ctx *hctx,
148 char *page)
Jens Axboebd166ef2017-01-17 06:03:22 -0700149{
Omar Sandovald96b37c2017-01-25 08:06:46 -0800150 return sprintf(page, "%u\n", hctx->tags->nr_tags);
Jens Axboebd166ef2017-01-17 06:03:22 -0700151}
152
Omar Sandovald96b37c2017-01-25 08:06:46 -0800153static ssize_t blk_mq_hw_sysfs_nr_reserved_tags_show(struct blk_mq_hw_ctx *hctx,
154 char *page)
Jens Axboe320ae512013-10-24 09:20:05 +0100155{
Omar Sandovald96b37c2017-01-25 08:06:46 -0800156 return sprintf(page, "%u\n", hctx->tags->nr_reserved_tags);
Jens Axboe320ae512013-10-24 09:20:05 +0100157}
158
Jens Axboe676141e2014-03-20 13:29:18 -0600159static ssize_t blk_mq_hw_sysfs_cpus_show(struct blk_mq_hw_ctx *hctx, char *page)
160{
Ming Lei89628422019-11-02 16:02:15 +0800161 const size_t size = PAGE_SIZE - 1;
Jens Axboecb2da432014-04-09 10:53:21 -0600162 unsigned int i, first = 1;
Ming Lei89628422019-11-02 16:02:15 +0800163 int ret = 0, pos = 0;
Jens Axboe676141e2014-03-20 13:29:18 -0600164
Jens Axboecb2da432014-04-09 10:53:21 -0600165 for_each_cpu(i, hctx->cpumask) {
Jens Axboe676141e2014-03-20 13:29:18 -0600166 if (first)
Ming Lei89628422019-11-02 16:02:15 +0800167 ret = snprintf(pos + page, size - pos, "%u", i);
Jens Axboe676141e2014-03-20 13:29:18 -0600168 else
Ming Lei89628422019-11-02 16:02:15 +0800169 ret = snprintf(pos + page, size - pos, ", %u", i);
170
171 if (ret >= size - pos)
172 break;
Jens Axboe676141e2014-03-20 13:29:18 -0600173
174 first = 0;
Ming Lei89628422019-11-02 16:02:15 +0800175 pos += ret;
Jens Axboe676141e2014-03-20 13:29:18 -0600176 }
177
Ming Leid2c9be82019-11-04 16:26:53 +0800178 ret = snprintf(pos + page, size + 1 - pos, "\n");
Ming Lei89628422019-11-02 16:02:15 +0800179 return pos + ret;
Jens Axboe676141e2014-03-20 13:29:18 -0600180}
181
Omar Sandovald96b37c2017-01-25 08:06:46 -0800182static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags = {
Joe Perches5657a812018-05-24 13:38:59 -0600183 .attr = {.name = "nr_tags", .mode = 0444 },
Omar Sandovald96b37c2017-01-25 08:06:46 -0800184 .show = blk_mq_hw_sysfs_nr_tags_show,
185};
186static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags = {
Joe Perches5657a812018-05-24 13:38:59 -0600187 .attr = {.name = "nr_reserved_tags", .mode = 0444 },
Omar Sandovald96b37c2017-01-25 08:06:46 -0800188 .show = blk_mq_hw_sysfs_nr_reserved_tags_show,
189};
Jens Axboe676141e2014-03-20 13:29:18 -0600190static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus = {
Joe Perches5657a812018-05-24 13:38:59 -0600191 .attr = {.name = "cpu_list", .mode = 0444 },
Jens Axboe676141e2014-03-20 13:29:18 -0600192 .show = blk_mq_hw_sysfs_cpus_show,
193};
Jens Axboe320ae512013-10-24 09:20:05 +0100194
195static struct attribute *default_hw_ctx_attrs[] = {
Omar Sandovald96b37c2017-01-25 08:06:46 -0800196 &blk_mq_hw_sysfs_nr_tags.attr,
197 &blk_mq_hw_sysfs_nr_reserved_tags.attr,
Jens Axboe676141e2014-03-20 13:29:18 -0600198 &blk_mq_hw_sysfs_cpus.attr,
Jens Axboe320ae512013-10-24 09:20:05 +0100199 NULL,
200};
Kimberly Brown800f5aa2019-04-01 22:51:30 -0400201ATTRIBUTE_GROUPS(default_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100202
203static const struct sysfs_ops blk_mq_sysfs_ops = {
204 .show = blk_mq_sysfs_show,
205 .store = blk_mq_sysfs_store,
206};
207
208static 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
213static struct kobj_type blk_mq_ktype = {
214 .sysfs_ops = &blk_mq_sysfs_ops,
215 .release = blk_mq_sysfs_release,
216};
217
218static struct kobj_type blk_mq_ctx_ktype = {
219 .sysfs_ops = &blk_mq_sysfs_ops,
Ming Lei1db49092018-11-20 09:44:35 +0800220 .release = blk_mq_ctx_sysfs_release,
Jens Axboe320ae512013-10-24 09:20:05 +0100221};
222
223static struct kobj_type blk_mq_hw_ktype = {
224 .sysfs_ops = &blk_mq_hw_sysfs_ops,
Kimberly Brown800f5aa2019-04-01 22:51:30 -0400225 .default_groups = default_hw_ctx_groups,
Ming Lei6c8b2322017-02-22 18:14:01 +0800226 .release = blk_mq_hw_sysfs_release,
Jens Axboe320ae512013-10-24 09:20:05 +0100227};
228
Fengguang Wuee3c5db2014-05-30 10:31:13 -0600229static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600230{
231 struct blk_mq_ctx *ctx;
232 int i;
233
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900234 if (!hctx->nr_ctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600235 return;
236
237 hctx_for_each_ctx(hctx, ctx, i)
238 kobject_del(&ctx->kobj);
239
240 kobject_del(&hctx->kobj);
241}
242
Fengguang Wuee3c5db2014-05-30 10:31:13 -0600243static int blk_mq_register_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600244{
245 struct request_queue *q = hctx->queue;
246 struct blk_mq_ctx *ctx;
247 int i, ret;
248
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900249 if (!hctx->nr_ctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600250 return 0;
251
Ming Lei1db49092018-11-20 09:44:35 +0800252 ret = kobject_add(&hctx->kobj, q->mq_kobj, "%u", hctx->queue_num);
Jens Axboe67aec142014-05-30 08:25:36 -0600253 if (ret)
254 return ret;
255
256 hctx_for_each_ctx(hctx, ctx, i) {
257 ret = kobject_add(&ctx->kobj, &hctx->kobj, "cpu%u", ctx->cpu);
258 if (ret)
259 break;
260 }
261
262 return ret;
263}
264
Mike Snitzer667257e2018-01-11 14:11:01 -0500265void blk_mq_unregister_dev(struct device *dev, struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100266{
Andrey Vagin85157362013-12-06 09:06:41 +0400267 struct blk_mq_hw_ctx *hctx;
Ming Lei7ea5fe32017-02-22 18:14:00 +0800268 int i;
Andrey Vagin85157362013-12-06 09:06:41 +0400269
Ming Leicecf5d82019-08-27 19:01:48 +0800270 lockdep_assert_held(&q->sysfs_dir_lock);
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700271
Ming Lei6c8b2322017-02-22 18:14:01 +0800272 queue_for_each_hw_ctx(q, hctx, i)
Jens Axboe67aec142014-05-30 08:25:36 -0600273 blk_mq_unregister_hctx(hctx);
274
Ming Lei1db49092018-11-20 09:44:35 +0800275 kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
276 kobject_del(q->mq_kobj);
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200277 kobject_put(&dev->kobj);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900278
279 q->mq_sysfs_init_done = false;
Jens Axboec0f3fd22016-08-02 08:45:44 -0600280}
281
Keith Busch868f2f02015-12-17 17:08:14 -0700282void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx)
283{
284 kobject_init(&hctx->kobj, &blk_mq_hw_ktype);
285}
286
Ming Lei7ea5fe32017-02-22 18:14:00 +0800287void blk_mq_sysfs_deinit(struct request_queue *q)
288{
289 struct blk_mq_ctx *ctx;
290 int cpu;
291
292 for_each_possible_cpu(cpu) {
293 ctx = per_cpu_ptr(q->queue_ctx, cpu);
294 kobject_put(&ctx->kobj);
295 }
Ming Lei1db49092018-11-20 09:44:35 +0800296 kobject_put(q->mq_kobj);
Ming Lei7ea5fe32017-02-22 18:14:00 +0800297}
298
Ming Lei737f98c2017-02-22 18:13:59 +0800299void blk_mq_sysfs_init(struct request_queue *q)
Jens Axboe67aec142014-05-30 08:25:36 -0600300{
Jens Axboe67aec142014-05-30 08:25:36 -0600301 struct blk_mq_ctx *ctx;
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100302 int cpu;
Jens Axboe67aec142014-05-30 08:25:36 -0600303
Ming Lei1db49092018-11-20 09:44:35 +0800304 kobject_init(q->mq_kobj, &blk_mq_ktype);
Jens Axboe67aec142014-05-30 08:25:36 -0600305
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100306 for_each_possible_cpu(cpu) {
307 ctx = per_cpu_ptr(q->queue_ctx, cpu);
Ming Lei1db49092018-11-20 09:44:35 +0800308
309 kobject_get(q->mq_kobj);
Takashi Iwai06a41a92014-12-10 16:38:30 +0100310 kobject_init(&ctx->kobj, &blk_mq_ctx_ktype);
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100311 }
Jens Axboe67aec142014-05-30 08:25:36 -0600312}
313
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700314int __blk_mq_register_dev(struct device *dev, struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100315{
Jens Axboe320ae512013-10-24 09:20:05 +0100316 struct blk_mq_hw_ctx *hctx;
Jens Axboe67aec142014-05-30 08:25:36 -0600317 int ret, i;
Jens Axboe320ae512013-10-24 09:20:05 +0100318
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700319 WARN_ON_ONCE(!q->kobj.parent);
Ming Leicecf5d82019-08-27 19:01:48 +0800320 lockdep_assert_held(&q->sysfs_dir_lock);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900321
Ming Lei1db49092018-11-20 09:44:35 +0800322 ret = kobject_add(q->mq_kobj, kobject_get(&dev->kobj), "%s", "mq");
Jens Axboe320ae512013-10-24 09:20:05 +0100323 if (ret < 0)
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900324 goto out;
Jens Axboe320ae512013-10-24 09:20:05 +0100325
Ming Lei1db49092018-11-20 09:44:35 +0800326 kobject_uevent(q->mq_kobj, KOBJ_ADD);
Jens Axboe320ae512013-10-24 09:20:05 +0100327
328 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe67aec142014-05-30 08:25:36 -0600329 ret = blk_mq_register_hctx(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100330 if (ret)
Bart Van Asschef05d1ba2017-04-26 13:47:51 -0700331 goto unreg;
Jens Axboe320ae512013-10-24 09:20:05 +0100332 }
333
Bart Van Asschef05d1ba2017-04-26 13:47:51 -0700334 q->mq_sysfs_init_done = true;
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700335
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900336out:
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700337 return ret;
Bart Van Asschef05d1ba2017-04-26 13:47:51 -0700338
339unreg:
340 while (--i >= 0)
341 blk_mq_unregister_hctx(q->queue_hw_ctx[i]);
342
Ming Lei1db49092018-11-20 09:44:35 +0800343 kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
344 kobject_del(q->mq_kobj);
Bart Van Asschef05d1ba2017-04-26 13:47:51 -0700345 kobject_put(&dev->kobj);
346 return ret;
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700347}
348
Jens Axboe67aec142014-05-30 08:25:36 -0600349void blk_mq_sysfs_unregister(struct request_queue *q)
350{
351 struct blk_mq_hw_ctx *hctx;
352 int i;
353
Ming Leicecf5d82019-08-27 19:01:48 +0800354 mutex_lock(&q->sysfs_dir_lock);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900355 if (!q->mq_sysfs_init_done)
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700356 goto unlock;
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900357
Jens Axboe67aec142014-05-30 08:25:36 -0600358 queue_for_each_hw_ctx(q, hctx, i)
359 blk_mq_unregister_hctx(hctx);
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700360
361unlock:
Ming Leicecf5d82019-08-27 19:01:48 +0800362 mutex_unlock(&q->sysfs_dir_lock);
Jens Axboe67aec142014-05-30 08:25:36 -0600363}
364
365int blk_mq_sysfs_register(struct request_queue *q)
366{
367 struct blk_mq_hw_ctx *hctx;
368 int i, ret = 0;
369
Ming Leicecf5d82019-08-27 19:01:48 +0800370 mutex_lock(&q->sysfs_dir_lock);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900371 if (!q->mq_sysfs_init_done)
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700372 goto unlock;
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900373
Jens Axboe67aec142014-05-30 08:25:36 -0600374 queue_for_each_hw_ctx(q, hctx, i) {
375 ret = blk_mq_register_hctx(hctx);
376 if (ret)
377 break;
378 }
379
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700380unlock:
Ming Leicecf5d82019-08-27 19:01:48 +0800381 mutex_unlock(&q->sysfs_dir_lock);
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700382
Jens Axboe67aec142014-05-30 08:25:36 -0600383 return ret;
384}