blob: 77fb238af2be9be63671f08e6d886660437b0485 [file] [log] [blame]
Jens Axboe320ae512013-10-24 09:20:05 +01001#include <linux/kernel.h>
2#include <linux/module.h>
3#include <linux/backing-dev.h>
4#include <linux/bio.h>
5#include <linux/blkdev.h>
6#include <linux/mm.h>
7#include <linux/init.h>
8#include <linux/slab.h>
9#include <linux/workqueue.h>
10#include <linux/smp.h>
11
12#include <linux/blk-mq.h>
13#include "blk-mq.h"
14#include "blk-mq-tag.h"
15
16static void blk_mq_sysfs_release(struct kobject *kobj)
17{
18}
19
20struct blk_mq_ctx_sysfs_entry {
21 struct attribute attr;
22 ssize_t (*show)(struct blk_mq_ctx *, char *);
23 ssize_t (*store)(struct blk_mq_ctx *, const char *, size_t);
24};
25
26struct blk_mq_hw_ctx_sysfs_entry {
27 struct attribute attr;
28 ssize_t (*show)(struct blk_mq_hw_ctx *, char *);
29 ssize_t (*store)(struct blk_mq_hw_ctx *, const char *, size_t);
30};
31
32static ssize_t blk_mq_sysfs_show(struct kobject *kobj, struct attribute *attr,
33 char *page)
34{
35 struct blk_mq_ctx_sysfs_entry *entry;
36 struct blk_mq_ctx *ctx;
37 struct request_queue *q;
38 ssize_t res;
39
40 entry = container_of(attr, struct blk_mq_ctx_sysfs_entry, attr);
41 ctx = container_of(kobj, struct blk_mq_ctx, kobj);
42 q = ctx->queue;
43
44 if (!entry->show)
45 return -EIO;
46
47 res = -ENOENT;
48 mutex_lock(&q->sysfs_lock);
49 if (!blk_queue_dying(q))
50 res = entry->show(ctx, page);
51 mutex_unlock(&q->sysfs_lock);
52 return res;
53}
54
55static ssize_t blk_mq_sysfs_store(struct kobject *kobj, struct attribute *attr,
56 const char *page, size_t length)
57{
58 struct blk_mq_ctx_sysfs_entry *entry;
59 struct blk_mq_ctx *ctx;
60 struct request_queue *q;
61 ssize_t res;
62
63 entry = container_of(attr, struct blk_mq_ctx_sysfs_entry, attr);
64 ctx = container_of(kobj, struct blk_mq_ctx, kobj);
65 q = ctx->queue;
66
67 if (!entry->store)
68 return -EIO;
69
70 res = -ENOENT;
71 mutex_lock(&q->sysfs_lock);
72 if (!blk_queue_dying(q))
73 res = entry->store(ctx, page, length);
74 mutex_unlock(&q->sysfs_lock);
75 return res;
76}
77
78static ssize_t blk_mq_hw_sysfs_show(struct kobject *kobj,
79 struct attribute *attr, char *page)
80{
81 struct blk_mq_hw_ctx_sysfs_entry *entry;
82 struct blk_mq_hw_ctx *hctx;
83 struct request_queue *q;
84 ssize_t res;
85
86 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
87 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
88 q = hctx->queue;
89
90 if (!entry->show)
91 return -EIO;
92
93 res = -ENOENT;
94 mutex_lock(&q->sysfs_lock);
95 if (!blk_queue_dying(q))
96 res = entry->show(hctx, page);
97 mutex_unlock(&q->sysfs_lock);
98 return res;
99}
100
101static ssize_t blk_mq_hw_sysfs_store(struct kobject *kobj,
102 struct attribute *attr, const char *page,
103 size_t length)
104{
105 struct blk_mq_hw_ctx_sysfs_entry *entry;
106 struct blk_mq_hw_ctx *hctx;
107 struct request_queue *q;
108 ssize_t res;
109
110 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
111 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
112 q = hctx->queue;
113
114 if (!entry->store)
115 return -EIO;
116
117 res = -ENOENT;
118 mutex_lock(&q->sysfs_lock);
119 if (!blk_queue_dying(q))
120 res = entry->store(hctx, page, length);
121 mutex_unlock(&q->sysfs_lock);
122 return res;
123}
124
Omar Sandovald96b37c2017-01-25 08:06:46 -0800125static ssize_t blk_mq_hw_sysfs_nr_tags_show(struct blk_mq_hw_ctx *hctx,
126 char *page)
Jens Axboebd166ef2017-01-17 06:03:22 -0700127{
Omar Sandovald96b37c2017-01-25 08:06:46 -0800128 return sprintf(page, "%u\n", hctx->tags->nr_tags);
Jens Axboebd166ef2017-01-17 06:03:22 -0700129}
130
Omar Sandovald96b37c2017-01-25 08:06:46 -0800131static ssize_t blk_mq_hw_sysfs_nr_reserved_tags_show(struct blk_mq_hw_ctx *hctx,
132 char *page)
Jens Axboe320ae512013-10-24 09:20:05 +0100133{
Omar Sandovald96b37c2017-01-25 08:06:46 -0800134 return sprintf(page, "%u\n", hctx->tags->nr_reserved_tags);
Jens Axboe320ae512013-10-24 09:20:05 +0100135}
136
Jens Axboe676141e2014-03-20 13:29:18 -0600137static ssize_t blk_mq_hw_sysfs_cpus_show(struct blk_mq_hw_ctx *hctx, char *page)
138{
Jens Axboecb2da432014-04-09 10:53:21 -0600139 unsigned int i, first = 1;
Jens Axboe676141e2014-03-20 13:29:18 -0600140 ssize_t ret = 0;
141
Jens Axboecb2da432014-04-09 10:53:21 -0600142 for_each_cpu(i, hctx->cpumask) {
Jens Axboe676141e2014-03-20 13:29:18 -0600143 if (first)
144 ret += sprintf(ret + page, "%u", i);
145 else
146 ret += sprintf(ret + page, ", %u", i);
147
148 first = 0;
149 }
150
Jens Axboe676141e2014-03-20 13:29:18 -0600151 ret += sprintf(ret + page, "\n");
152 return ret;
153}
154
Jens Axboe320ae512013-10-24 09:20:05 +0100155static struct attribute *default_ctx_attrs[] = {
Jens Axboe320ae512013-10-24 09:20:05 +0100156 NULL,
157};
158
Omar Sandovald96b37c2017-01-25 08:06:46 -0800159static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags = {
160 .attr = {.name = "nr_tags", .mode = S_IRUGO },
161 .show = blk_mq_hw_sysfs_nr_tags_show,
162};
163static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags = {
164 .attr = {.name = "nr_reserved_tags", .mode = S_IRUGO },
165 .show = blk_mq_hw_sysfs_nr_reserved_tags_show,
166};
Jens Axboe676141e2014-03-20 13:29:18 -0600167static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus = {
168 .attr = {.name = "cpu_list", .mode = S_IRUGO },
169 .show = blk_mq_hw_sysfs_cpus_show,
170};
Jens Axboe320ae512013-10-24 09:20:05 +0100171
172static struct attribute *default_hw_ctx_attrs[] = {
Omar Sandovald96b37c2017-01-25 08:06:46 -0800173 &blk_mq_hw_sysfs_nr_tags.attr,
174 &blk_mq_hw_sysfs_nr_reserved_tags.attr,
Jens Axboe676141e2014-03-20 13:29:18 -0600175 &blk_mq_hw_sysfs_cpus.attr,
Jens Axboe320ae512013-10-24 09:20:05 +0100176 NULL,
177};
178
179static const struct sysfs_ops blk_mq_sysfs_ops = {
180 .show = blk_mq_sysfs_show,
181 .store = blk_mq_sysfs_store,
182};
183
184static const struct sysfs_ops blk_mq_hw_sysfs_ops = {
185 .show = blk_mq_hw_sysfs_show,
186 .store = blk_mq_hw_sysfs_store,
187};
188
189static struct kobj_type blk_mq_ktype = {
190 .sysfs_ops = &blk_mq_sysfs_ops,
191 .release = blk_mq_sysfs_release,
192};
193
194static struct kobj_type blk_mq_ctx_ktype = {
195 .sysfs_ops = &blk_mq_sysfs_ops,
196 .default_attrs = default_ctx_attrs,
Ming Lei74170112015-01-29 20:17:26 +0800197 .release = blk_mq_sysfs_release,
Jens Axboe320ae512013-10-24 09:20:05 +0100198};
199
200static struct kobj_type blk_mq_hw_ktype = {
201 .sysfs_ops = &blk_mq_hw_sysfs_ops,
202 .default_attrs = default_hw_ctx_attrs,
Ming Lei74170112015-01-29 20:17:26 +0800203 .release = blk_mq_sysfs_release,
Jens Axboe320ae512013-10-24 09:20:05 +0100204};
205
Fengguang Wuee3c5db2014-05-30 10:31:13 -0600206static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600207{
208 struct blk_mq_ctx *ctx;
209 int i;
210
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900211 if (!hctx->nr_ctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600212 return;
213
214 hctx_for_each_ctx(hctx, ctx, i)
215 kobject_del(&ctx->kobj);
216
217 kobject_del(&hctx->kobj);
218}
219
Fengguang Wuee3c5db2014-05-30 10:31:13 -0600220static int blk_mq_register_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600221{
222 struct request_queue *q = hctx->queue;
223 struct blk_mq_ctx *ctx;
224 int i, ret;
225
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900226 if (!hctx->nr_ctx)
Jens Axboe67aec142014-05-30 08:25:36 -0600227 return 0;
228
229 ret = kobject_add(&hctx->kobj, &q->mq_kobj, "%u", hctx->queue_num);
230 if (ret)
231 return ret;
232
233 hctx_for_each_ctx(hctx, ctx, i) {
234 ret = kobject_add(&ctx->kobj, &hctx->kobj, "cpu%u", ctx->cpu);
235 if (ret)
236 break;
237 }
238
239 return ret;
240}
241
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200242static void __blk_mq_unregister_dev(struct device *dev, struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100243{
Andrey Vagin85157362013-12-06 09:06:41 +0400244 struct blk_mq_hw_ctx *hctx;
Ming Lei7ea5fe32017-02-22 18:14:00 +0800245 int i;
Andrey Vagin85157362013-12-06 09:06:41 +0400246
247 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe67aec142014-05-30 08:25:36 -0600248 blk_mq_unregister_hctx(hctx);
249
Andrey Vagin85157362013-12-06 09:06:41 +0400250 kobject_put(&hctx->kobj);
251 }
Jens Axboe320ae512013-10-24 09:20:05 +0100252
Omar Sandoval62ebce12017-01-31 14:53:21 -0800253 blk_mq_debugfs_unregister_hctxs(q);
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800254
Jens Axboe320ae512013-10-24 09:20:05 +0100255 kobject_uevent(&q->mq_kobj, KOBJ_REMOVE);
256 kobject_del(&q->mq_kobj);
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200257 kobject_put(&dev->kobj);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900258
259 q->mq_sysfs_init_done = false;
Jens Axboec0f3fd22016-08-02 08:45:44 -0600260}
261
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200262void blk_mq_unregister_dev(struct device *dev, struct request_queue *q)
Jens Axboec0f3fd22016-08-02 08:45:44 -0600263{
264 blk_mq_disable_hotplug();
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200265 __blk_mq_unregister_dev(dev, q);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900266 blk_mq_enable_hotplug();
Jens Axboe320ae512013-10-24 09:20:05 +0100267}
268
Keith Busch868f2f02015-12-17 17:08:14 -0700269void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx)
270{
271 kobject_init(&hctx->kobj, &blk_mq_hw_ktype);
272}
273
Ming Lei7ea5fe32017-02-22 18:14:00 +0800274void blk_mq_sysfs_deinit(struct request_queue *q)
275{
276 struct blk_mq_ctx *ctx;
277 int cpu;
278
279 for_each_possible_cpu(cpu) {
280 ctx = per_cpu_ptr(q->queue_ctx, cpu);
281 kobject_put(&ctx->kobj);
282 }
283 kobject_put(&q->mq_kobj);
284}
285
Ming Lei737f98c2017-02-22 18:13:59 +0800286void blk_mq_sysfs_init(struct request_queue *q)
Jens Axboe67aec142014-05-30 08:25:36 -0600287{
Jens Axboe67aec142014-05-30 08:25:36 -0600288 struct blk_mq_ctx *ctx;
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100289 int cpu;
Jens Axboe67aec142014-05-30 08:25:36 -0600290
291 kobject_init(&q->mq_kobj, &blk_mq_ktype);
292
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100293 for_each_possible_cpu(cpu) {
294 ctx = per_cpu_ptr(q->queue_ctx, cpu);
Takashi Iwai06a41a92014-12-10 16:38:30 +0100295 kobject_init(&ctx->kobj, &blk_mq_ctx_ktype);
Thomas Gleixner897bb0c2016-03-19 11:30:33 +0100296 }
Jens Axboe67aec142014-05-30 08:25:36 -0600297}
298
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200299int blk_mq_register_dev(struct device *dev, struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100300{
Jens Axboe320ae512013-10-24 09:20:05 +0100301 struct blk_mq_hw_ctx *hctx;
Jens Axboe67aec142014-05-30 08:25:36 -0600302 int ret, i;
Jens Axboe320ae512013-10-24 09:20:05 +0100303
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900304 blk_mq_disable_hotplug();
305
Jens Axboe320ae512013-10-24 09:20:05 +0100306 ret = kobject_add(&q->mq_kobj, kobject_get(&dev->kobj), "%s", "mq");
307 if (ret < 0)
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900308 goto out;
Jens Axboe320ae512013-10-24 09:20:05 +0100309
310 kobject_uevent(&q->mq_kobj, KOBJ_ADD);
311
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800312 blk_mq_debugfs_register(q, kobject_name(&dev->kobj));
313
Jens Axboe320ae512013-10-24 09:20:05 +0100314 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe67aec142014-05-30 08:25:36 -0600315 ret = blk_mq_register_hctx(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100316 if (ret)
317 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100318 }
319
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900320 if (ret)
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200321 __blk_mq_unregister_dev(dev, q);
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900322 else
323 q->mq_sysfs_init_done = true;
324out:
325 blk_mq_enable_hotplug();
Jens Axboe320ae512013-10-24 09:20:05 +0100326
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900327 return ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100328}
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200329EXPORT_SYMBOL_GPL(blk_mq_register_dev);
Jens Axboe67aec142014-05-30 08:25:36 -0600330
331void blk_mq_sysfs_unregister(struct request_queue *q)
332{
333 struct blk_mq_hw_ctx *hctx;
334 int i;
335
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900336 if (!q->mq_sysfs_init_done)
337 return;
338
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800339 blk_mq_debugfs_unregister_hctxs(q);
340
Jens Axboe67aec142014-05-30 08:25:36 -0600341 queue_for_each_hw_ctx(q, hctx, i)
342 blk_mq_unregister_hctx(hctx);
343}
344
345int blk_mq_sysfs_register(struct request_queue *q)
346{
347 struct blk_mq_hw_ctx *hctx;
348 int i, ret = 0;
349
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900350 if (!q->mq_sysfs_init_done)
351 return ret;
352
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800353 blk_mq_debugfs_register_hctxs(q);
354
Jens Axboe67aec142014-05-30 08:25:36 -0600355 queue_for_each_hw_ctx(q, hctx, i) {
356 ret = blk_mq_register_hctx(hctx);
357 if (ret)
358 break;
359 }
360
361 return ret;
362}