blob: 6747865740750d4e9d47678490e24d27783f9f48 [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 Leic7e2d942019-04-30 09:52:25 +080039 blk_free_flush_queue(hctx->fq);
40 sbitmap_free(&hctx->ctx_map);
Ming Lei01388df2017-02-22 18:14:02 +080041 free_cpumask_var(hctx->cpumask);
Ming Lei6c8b2322017-02-22 18:14:01 +080042 kfree(hctx->ctxs);
43 kfree(hctx);
44}
45
Jens Axboe320ae512013-10-24 09:20:05 +010046struct blk_mq_hw_ctx_sysfs_entry {
47 struct attribute attr;
48 ssize_t (*show)(struct blk_mq_hw_ctx *, char *);
49 ssize_t (*store)(struct blk_mq_hw_ctx *, const char *, size_t);
50};
51
Jens Axboe320ae512013-10-24 09:20:05 +010052static ssize_t blk_mq_hw_sysfs_show(struct kobject *kobj,
53 struct attribute *attr, char *page)
54{
55 struct blk_mq_hw_ctx_sysfs_entry *entry;
56 struct blk_mq_hw_ctx *hctx;
57 struct request_queue *q;
58 ssize_t res;
59
60 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
61 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
62 q = hctx->queue;
63
64 if (!entry->show)
65 return -EIO;
66
Jens Axboe320ae512013-10-24 09:20:05 +010067 mutex_lock(&q->sysfs_lock);
Bart Van Asschebae85c12019-09-30 16:00:43 -070068 res = entry->show(hctx, page);
Jens Axboe320ae512013-10-24 09:20:05 +010069 mutex_unlock(&q->sysfs_lock);
70 return res;
71}
72
73static ssize_t blk_mq_hw_sysfs_store(struct kobject *kobj,
74 struct attribute *attr, const char *page,
75 size_t length)
76{
77 struct blk_mq_hw_ctx_sysfs_entry *entry;
78 struct blk_mq_hw_ctx *hctx;
79 struct request_queue *q;
80 ssize_t res;
81
82 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
83 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
84 q = hctx->queue;
85
86 if (!entry->store)
87 return -EIO;
88
Jens Axboe320ae512013-10-24 09:20:05 +010089 mutex_lock(&q->sysfs_lock);
Bart Van Asschebae85c12019-09-30 16:00:43 -070090 res = entry->store(hctx, page, length);
Jens Axboe320ae512013-10-24 09:20:05 +010091 mutex_unlock(&q->sysfs_lock);
92 return res;
93}
94
Omar Sandovald96b37c2017-01-25 08:06:46 -080095static ssize_t blk_mq_hw_sysfs_nr_tags_show(struct blk_mq_hw_ctx *hctx,
96 char *page)
Jens Axboebd166ef2017-01-17 06:03:22 -070097{
Omar Sandovald96b37c2017-01-25 08:06:46 -080098 return sprintf(page, "%u\n", hctx->tags->nr_tags);
Jens Axboebd166ef2017-01-17 06:03:22 -070099}
100
Omar Sandovald96b37c2017-01-25 08:06:46 -0800101static ssize_t blk_mq_hw_sysfs_nr_reserved_tags_show(struct blk_mq_hw_ctx *hctx,
102 char *page)
Jens Axboe320ae512013-10-24 09:20:05 +0100103{
Omar Sandovald96b37c2017-01-25 08:06:46 -0800104 return sprintf(page, "%u\n", hctx->tags->nr_reserved_tags);
Jens Axboe320ae512013-10-24 09:20:05 +0100105}
106
Jens Axboe676141e2014-03-20 13:29:18 -0600107static ssize_t blk_mq_hw_sysfs_cpus_show(struct blk_mq_hw_ctx *hctx, char *page)
108{
Ming Lei89628422019-11-02 16:02:15 +0800109 const size_t size = PAGE_SIZE - 1;
Jens Axboecb2da432014-04-09 10:53:21 -0600110 unsigned int i, first = 1;
Ming Lei89628422019-11-02 16:02:15 +0800111 int ret = 0, pos = 0;
Jens Axboe676141e2014-03-20 13:29:18 -0600112
Jens Axboecb2da432014-04-09 10:53:21 -0600113 for_each_cpu(i, hctx->cpumask) {
Jens Axboe676141e2014-03-20 13:29:18 -0600114 if (first)
Ming Lei89628422019-11-02 16:02:15 +0800115 ret = snprintf(pos + page, size - pos, "%u", i);
Jens Axboe676141e2014-03-20 13:29:18 -0600116 else
Ming Lei89628422019-11-02 16:02:15 +0800117 ret = snprintf(pos + page, size - pos, ", %u", i);
118
119 if (ret >= size - pos)
120 break;
Jens Axboe676141e2014-03-20 13:29:18 -0600121
122 first = 0;
Ming Lei89628422019-11-02 16:02:15 +0800123 pos += ret;
Jens Axboe676141e2014-03-20 13:29:18 -0600124 }
125
Ming Leid2c9be82019-11-04 16:26:53 +0800126 ret = snprintf(pos + page, size + 1 - pos, "\n");
Ming Lei89628422019-11-02 16:02:15 +0800127 return pos + ret;
Jens Axboe676141e2014-03-20 13:29:18 -0600128}
129
Omar Sandovald96b37c2017-01-25 08:06:46 -0800130static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags = {
Joe Perches5657a812018-05-24 13:38:59 -0600131 .attr = {.name = "nr_tags", .mode = 0444 },
Omar Sandovald96b37c2017-01-25 08:06:46 -0800132 .show = blk_mq_hw_sysfs_nr_tags_show,
133};
134static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags = {
Joe Perches5657a812018-05-24 13:38:59 -0600135 .attr = {.name = "nr_reserved_tags", .mode = 0444 },
Omar Sandovald96b37c2017-01-25 08:06:46 -0800136 .show = blk_mq_hw_sysfs_nr_reserved_tags_show,
137};
Jens Axboe676141e2014-03-20 13:29:18 -0600138static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus = {
Joe Perches5657a812018-05-24 13:38:59 -0600139 .attr = {.name = "cpu_list", .mode = 0444 },
Jens Axboe676141e2014-03-20 13:29:18 -0600140 .show = blk_mq_hw_sysfs_cpus_show,
141};
Jens Axboe320ae512013-10-24 09:20:05 +0100142
143static struct attribute *default_hw_ctx_attrs[] = {
Omar Sandovald96b37c2017-01-25 08:06:46 -0800144 &blk_mq_hw_sysfs_nr_tags.attr,
145 &blk_mq_hw_sysfs_nr_reserved_tags.attr,
Jens Axboe676141e2014-03-20 13:29:18 -0600146 &blk_mq_hw_sysfs_cpus.attr,
Jens Axboe320ae512013-10-24 09:20:05 +0100147 NULL,
148};
Kimberly Brown800f5aa2019-04-01 22:51:30 -0400149ATTRIBUTE_GROUPS(default_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100150
Jens Axboe320ae512013-10-24 09:20:05 +0100151static const struct sysfs_ops blk_mq_hw_sysfs_ops = {
152 .show = blk_mq_hw_sysfs_show,
153 .store = blk_mq_hw_sysfs_store,
154};
155
156static struct kobj_type blk_mq_ktype = {
Jens Axboe320ae512013-10-24 09:20:05 +0100157 .release = blk_mq_sysfs_release,
158};
159
160static struct kobj_type blk_mq_ctx_ktype = {
Ming Lei1db49092018-11-20 09:44:35 +0800161 .release = blk_mq_ctx_sysfs_release,
Jens Axboe320ae512013-10-24 09:20:05 +0100162};
163
164static struct kobj_type blk_mq_hw_ktype = {
165 .sysfs_ops = &blk_mq_hw_sysfs_ops,
Kimberly Brown800f5aa2019-04-01 22:51:30 -0400166 .default_groups = default_hw_ctx_groups,
Ming Lei6c8b2322017-02-22 18:14:01 +0800167 .release = blk_mq_hw_sysfs_release,
Jens Axboe320ae512013-10-24 09:20:05 +0100168};
169
Fengguang Wuee3c5db2014-05-30 10:31:13 -0600170static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600171{
172 struct blk_mq_ctx *ctx;
173 int i;
174
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900175 if (!hctx->nr_ctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600176 return;
177
178 hctx_for_each_ctx(hctx, ctx, i)
179 kobject_del(&ctx->kobj);
180
181 kobject_del(&hctx->kobj);
182}
183
Fengguang Wuee3c5db2014-05-30 10:31:13 -0600184static int blk_mq_register_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600185{
186 struct request_queue *q = hctx->queue;
187 struct blk_mq_ctx *ctx;
188 int i, ret;
189
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900190 if (!hctx->nr_ctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600191 return 0;
192
Ming Lei1db49092018-11-20 09:44:35 +0800193 ret = kobject_add(&hctx->kobj, q->mq_kobj, "%u", hctx->queue_num);
Jens Axboe67aec142014-05-30 08:25:36 -0600194 if (ret)
195 return ret;
196
197 hctx_for_each_ctx(hctx, ctx, i) {
198 ret = kobject_add(&ctx->kobj, &hctx->kobj, "cpu%u", ctx->cpu);
199 if (ret)
200 break;
201 }
202
203 return ret;
204}
205
Mike Snitzer667257e2018-01-11 14:11:01 -0500206void blk_mq_unregister_dev(struct device *dev, struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100207{
Andrey Vagin85157362013-12-06 09:06:41 +0400208 struct blk_mq_hw_ctx *hctx;
Ming Lei7ea5fe32017-02-22 18:14:00 +0800209 int i;
Andrey Vagin85157362013-12-06 09:06:41 +0400210
Ming Leicecf5d82019-08-27 19:01:48 +0800211 lockdep_assert_held(&q->sysfs_dir_lock);
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700212
Ming Lei6c8b2322017-02-22 18:14:01 +0800213 queue_for_each_hw_ctx(q, hctx, i)
Jens Axboe67aec142014-05-30 08:25:36 -0600214 blk_mq_unregister_hctx(hctx);
215
Ming Lei1db49092018-11-20 09:44:35 +0800216 kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
217 kobject_del(q->mq_kobj);
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200218 kobject_put(&dev->kobj);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900219
220 q->mq_sysfs_init_done = false;
Jens Axboec0f3fd22016-08-02 08:45:44 -0600221}
222
Keith Busch868f2f02015-12-17 17:08:14 -0700223void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx)
224{
225 kobject_init(&hctx->kobj, &blk_mq_hw_ktype);
226}
227
Ming Lei7ea5fe32017-02-22 18:14:00 +0800228void blk_mq_sysfs_deinit(struct request_queue *q)
229{
230 struct blk_mq_ctx *ctx;
231 int cpu;
232
233 for_each_possible_cpu(cpu) {
234 ctx = per_cpu_ptr(q->queue_ctx, cpu);
235 kobject_put(&ctx->kobj);
236 }
Ming Lei1db49092018-11-20 09:44:35 +0800237 kobject_put(q->mq_kobj);
Ming Lei7ea5fe32017-02-22 18:14:00 +0800238}
239
Ming Lei737f98c2017-02-22 18:13:59 +0800240void blk_mq_sysfs_init(struct request_queue *q)
Jens Axboe67aec142014-05-30 08:25:36 -0600241{
Jens Axboe67aec142014-05-30 08:25:36 -0600242 struct blk_mq_ctx *ctx;
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100243 int cpu;
Jens Axboe67aec142014-05-30 08:25:36 -0600244
Ming Lei1db49092018-11-20 09:44:35 +0800245 kobject_init(q->mq_kobj, &blk_mq_ktype);
Jens Axboe67aec142014-05-30 08:25:36 -0600246
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100247 for_each_possible_cpu(cpu) {
248 ctx = per_cpu_ptr(q->queue_ctx, cpu);
Ming Lei1db49092018-11-20 09:44:35 +0800249
250 kobject_get(q->mq_kobj);
Takashi Iwai06a41a92014-12-10 16:38:30 +0100251 kobject_init(&ctx->kobj, &blk_mq_ctx_ktype);
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100252 }
Jens Axboe67aec142014-05-30 08:25:36 -0600253}
254
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700255int __blk_mq_register_dev(struct device *dev, struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100256{
Jens Axboe320ae512013-10-24 09:20:05 +0100257 struct blk_mq_hw_ctx *hctx;
Jens Axboe67aec142014-05-30 08:25:36 -0600258 int ret, i;
Jens Axboe320ae512013-10-24 09:20:05 +0100259
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700260 WARN_ON_ONCE(!q->kobj.parent);
Ming Leicecf5d82019-08-27 19:01:48 +0800261 lockdep_assert_held(&q->sysfs_dir_lock);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900262
Ming Lei1db49092018-11-20 09:44:35 +0800263 ret = kobject_add(q->mq_kobj, kobject_get(&dev->kobj), "%s", "mq");
Jens Axboe320ae512013-10-24 09:20:05 +0100264 if (ret < 0)
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900265 goto out;
Jens Axboe320ae512013-10-24 09:20:05 +0100266
Ming Lei1db49092018-11-20 09:44:35 +0800267 kobject_uevent(q->mq_kobj, KOBJ_ADD);
Jens Axboe320ae512013-10-24 09:20:05 +0100268
269 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe67aec142014-05-30 08:25:36 -0600270 ret = blk_mq_register_hctx(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100271 if (ret)
Bart Van Asschef05d1ba2017-04-26 13:47:51 -0700272 goto unreg;
Jens Axboe320ae512013-10-24 09:20:05 +0100273 }
274
Bart Van Asschef05d1ba2017-04-26 13:47:51 -0700275 q->mq_sysfs_init_done = true;
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700276
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900277out:
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700278 return ret;
Bart Van Asschef05d1ba2017-04-26 13:47:51 -0700279
280unreg:
281 while (--i >= 0)
282 blk_mq_unregister_hctx(q->queue_hw_ctx[i]);
283
Ming Lei1db49092018-11-20 09:44:35 +0800284 kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
285 kobject_del(q->mq_kobj);
Bart Van Asschef05d1ba2017-04-26 13:47:51 -0700286 kobject_put(&dev->kobj);
287 return ret;
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700288}
289
Jens Axboe67aec142014-05-30 08:25:36 -0600290void blk_mq_sysfs_unregister(struct request_queue *q)
291{
292 struct blk_mq_hw_ctx *hctx;
293 int i;
294
Ming Leicecf5d82019-08-27 19:01:48 +0800295 mutex_lock(&q->sysfs_dir_lock);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900296 if (!q->mq_sysfs_init_done)
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700297 goto unlock;
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900298
Jens Axboe67aec142014-05-30 08:25:36 -0600299 queue_for_each_hw_ctx(q, hctx, i)
300 blk_mq_unregister_hctx(hctx);
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700301
302unlock:
Ming Leicecf5d82019-08-27 19:01:48 +0800303 mutex_unlock(&q->sysfs_dir_lock);
Jens Axboe67aec142014-05-30 08:25:36 -0600304}
305
306int blk_mq_sysfs_register(struct request_queue *q)
307{
308 struct blk_mq_hw_ctx *hctx;
309 int i, ret = 0;
310
Ming Leicecf5d82019-08-27 19:01:48 +0800311 mutex_lock(&q->sysfs_dir_lock);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900312 if (!q->mq_sysfs_init_done)
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700313 goto unlock;
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900314
Jens Axboe67aec142014-05-30 08:25:36 -0600315 queue_for_each_hw_ctx(q, hctx, i) {
316 ret = blk_mq_register_hctx(hctx);
317 if (ret)
318 break;
319 }
320
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700321unlock:
Ming Leicecf5d82019-08-27 19:01:48 +0800322 mutex_unlock(&q->sysfs_dir_lock);
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700323
Jens Axboe67aec142014-05-30 08:25:36 -0600324 return ret;
325}