]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - block/blk-mq-sysfs.c
blk-mq: move cancel of requeue_work into blk_mq_release
[thirdparty/kernel/stable.git] / block / blk-mq-sysfs.c
CommitLineData
3dcf60bc 1// SPDX-License-Identifier: GPL-2.0
320ae51f
JA
2#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>
14#include "blk-mq.h"
15#include "blk-mq-tag.h"
16
17static void blk_mq_sysfs_release(struct kobject *kobj)
18{
1db4909e
ML
19 struct blk_mq_ctxs *ctxs = container_of(kobj, struct blk_mq_ctxs, kobj);
20
21 free_percpu(ctxs->queue_ctx);
22 kfree(ctxs);
23}
24
25static void blk_mq_ctx_sysfs_release(struct kobject *kobj)
26{
27 struct blk_mq_ctx *ctx = container_of(kobj, struct blk_mq_ctx, kobj);
28
29 /* ctx->ctxs won't be released until all ctx are freed */
30 kobject_put(&ctx->ctxs->kobj);
320ae51f
JA
31}
32
6c8b232e
ML
33static void blk_mq_hw_sysfs_release(struct kobject *kobj)
34{
35 struct blk_mq_hw_ctx *hctx = container_of(kobj, struct blk_mq_hw_ctx,
36 kobj);
01388df3 37 free_cpumask_var(hctx->cpumask);
6c8b232e
ML
38 kfree(hctx->ctxs);
39 kfree(hctx);
40}
41
320ae51f
JA
42struct blk_mq_ctx_sysfs_entry {
43 struct attribute attr;
44 ssize_t (*show)(struct blk_mq_ctx *, char *);
45 ssize_t (*store)(struct blk_mq_ctx *, const char *, size_t);
46};
47
48struct 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);
52};
53
54static ssize_t blk_mq_sysfs_show(struct kobject *kobj, struct attribute *attr,
55 char *page)
56{
57 struct blk_mq_ctx_sysfs_entry *entry;
58 struct blk_mq_ctx *ctx;
59 struct request_queue *q;
60 ssize_t res;
61
62 entry = container_of(attr, struct blk_mq_ctx_sysfs_entry, attr);
63 ctx = container_of(kobj, struct blk_mq_ctx, kobj);
64 q = ctx->queue;
65
66 if (!entry->show)
67 return -EIO;
68
69 res = -ENOENT;
70 mutex_lock(&q->sysfs_lock);
71 if (!blk_queue_dying(q))
72 res = entry->show(ctx, page);
73 mutex_unlock(&q->sysfs_lock);
74 return res;
75}
76
77static ssize_t blk_mq_sysfs_store(struct kobject *kobj, struct attribute *attr,
78 const char *page, size_t length)
79{
80 struct blk_mq_ctx_sysfs_entry *entry;
81 struct blk_mq_ctx *ctx;
82 struct request_queue *q;
83 ssize_t res;
84
85 entry = container_of(attr, struct blk_mq_ctx_sysfs_entry, attr);
86 ctx = container_of(kobj, struct blk_mq_ctx, kobj);
87 q = ctx->queue;
88
89 if (!entry->store)
90 return -EIO;
91
92 res = -ENOENT;
93 mutex_lock(&q->sysfs_lock);
94 if (!blk_queue_dying(q))
95 res = entry->store(ctx, page, length);
96 mutex_unlock(&q->sysfs_lock);
97 return res;
98}
99
100static ssize_t blk_mq_hw_sysfs_show(struct kobject *kobj,
101 struct attribute *attr, char *page)
102{
103 struct blk_mq_hw_ctx_sysfs_entry *entry;
104 struct blk_mq_hw_ctx *hctx;
105 struct request_queue *q;
106 ssize_t res;
107
108 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
109 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
110 q = hctx->queue;
111
112 if (!entry->show)
113 return -EIO;
114
115 res = -ENOENT;
116 mutex_lock(&q->sysfs_lock);
117 if (!blk_queue_dying(q))
118 res = entry->show(hctx, page);
119 mutex_unlock(&q->sysfs_lock);
120 return res;
121}
122
123static ssize_t blk_mq_hw_sysfs_store(struct kobject *kobj,
124 struct attribute *attr, const char *page,
125 size_t length)
126{
127 struct blk_mq_hw_ctx_sysfs_entry *entry;
128 struct blk_mq_hw_ctx *hctx;
129 struct request_queue *q;
130 ssize_t res;
131
132 entry = container_of(attr, struct blk_mq_hw_ctx_sysfs_entry, attr);
133 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj);
134 q = hctx->queue;
135
136 if (!entry->store)
137 return -EIO;
138
139 res = -ENOENT;
140 mutex_lock(&q->sysfs_lock);
141 if (!blk_queue_dying(q))
142 res = entry->store(hctx, page, length);
143 mutex_unlock(&q->sysfs_lock);
144 return res;
145}
146
d96b37c0
OS
147static ssize_t blk_mq_hw_sysfs_nr_tags_show(struct blk_mq_hw_ctx *hctx,
148 char *page)
bd166ef1 149{
d96b37c0 150 return sprintf(page, "%u\n", hctx->tags->nr_tags);
bd166ef1
JA
151}
152
d96b37c0
OS
153static ssize_t blk_mq_hw_sysfs_nr_reserved_tags_show(struct blk_mq_hw_ctx *hctx,
154 char *page)
320ae51f 155{
d96b37c0 156 return sprintf(page, "%u\n", hctx->tags->nr_reserved_tags);
320ae51f
JA
157}
158
676141e4
JA
159static ssize_t blk_mq_hw_sysfs_cpus_show(struct blk_mq_hw_ctx *hctx, char *page)
160{
cb2da43e 161 unsigned int i, first = 1;
676141e4
JA
162 ssize_t ret = 0;
163
cb2da43e 164 for_each_cpu(i, hctx->cpumask) {
676141e4
JA
165 if (first)
166 ret += sprintf(ret + page, "%u", i);
167 else
168 ret += sprintf(ret + page, ", %u", i);
169
170 first = 0;
171 }
172
676141e4
JA
173 ret += sprintf(ret + page, "\n");
174 return ret;
175}
176
320ae51f 177static struct attribute *default_ctx_attrs[] = {
320ae51f
JA
178 NULL,
179};
180
d96b37c0 181static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags = {
5657a819 182 .attr = {.name = "nr_tags", .mode = 0444 },
d96b37c0
OS
183 .show = blk_mq_hw_sysfs_nr_tags_show,
184};
185static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags = {
5657a819 186 .attr = {.name = "nr_reserved_tags", .mode = 0444 },
d96b37c0
OS
187 .show = blk_mq_hw_sysfs_nr_reserved_tags_show,
188};
676141e4 189static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus = {
5657a819 190 .attr = {.name = "cpu_list", .mode = 0444 },
676141e4
JA
191 .show = blk_mq_hw_sysfs_cpus_show,
192};
320ae51f
JA
193
194static struct attribute *default_hw_ctx_attrs[] = {
d96b37c0
OS
195 &blk_mq_hw_sysfs_nr_tags.attr,
196 &blk_mq_hw_sysfs_nr_reserved_tags.attr,
676141e4 197 &blk_mq_hw_sysfs_cpus.attr,
320ae51f
JA
198 NULL,
199};
200
201static const struct sysfs_ops blk_mq_sysfs_ops = {
202 .show = blk_mq_sysfs_show,
203 .store = blk_mq_sysfs_store,
204};
205
206static const struct sysfs_ops blk_mq_hw_sysfs_ops = {
207 .show = blk_mq_hw_sysfs_show,
208 .store = blk_mq_hw_sysfs_store,
209};
210
211static struct kobj_type blk_mq_ktype = {
212 .sysfs_ops = &blk_mq_sysfs_ops,
213 .release = blk_mq_sysfs_release,
214};
215
216static struct kobj_type blk_mq_ctx_ktype = {
217 .sysfs_ops = &blk_mq_sysfs_ops,
218 .default_attrs = default_ctx_attrs,
1db4909e 219 .release = blk_mq_ctx_sysfs_release,
320ae51f
JA
220};
221
222static struct kobj_type blk_mq_hw_ktype = {
223 .sysfs_ops = &blk_mq_hw_sysfs_ops,
224 .default_attrs = default_hw_ctx_attrs,
6c8b232e 225 .release = blk_mq_hw_sysfs_release,
320ae51f
JA
226};
227
ee3c5db0 228static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx *hctx)
67aec14c
JA
229{
230 struct blk_mq_ctx *ctx;
231 int i;
232
4593fdbe 233 if (!hctx->nr_ctx)
67aec14c
JA
234 return;
235
236 hctx_for_each_ctx(hctx, ctx, i)
237 kobject_del(&ctx->kobj);
238
239 kobject_del(&hctx->kobj);
240}
241
ee3c5db0 242static int blk_mq_register_hctx(struct blk_mq_hw_ctx *hctx)
67aec14c
JA
243{
244 struct request_queue *q = hctx->queue;
245 struct blk_mq_ctx *ctx;
246 int i, ret;
247
4593fdbe 248 if (!hctx->nr_ctx)
67aec14c
JA
249 return 0;
250
1db4909e 251 ret = kobject_add(&hctx->kobj, q->mq_kobj, "%u", hctx->queue_num);
67aec14c
JA
252 if (ret)
253 return ret;
254
255 hctx_for_each_ctx(hctx, ctx, i) {
256 ret = kobject_add(&ctx->kobj, &hctx->kobj, "cpu%u", ctx->cpu);
257 if (ret)
258 break;
259 }
260
261 return ret;
262}
263
667257e8 264void blk_mq_unregister_dev(struct device *dev, struct request_queue *q)
320ae51f 265{
85157366 266 struct blk_mq_hw_ctx *hctx;
7ea5fe31 267 int i;
85157366 268
2d0364c8
BVA
269 lockdep_assert_held(&q->sysfs_lock);
270
6c8b232e 271 queue_for_each_hw_ctx(q, hctx, i)
67aec14c
JA
272 blk_mq_unregister_hctx(hctx);
273
1db4909e
ML
274 kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
275 kobject_del(q->mq_kobj);
b21d5b30 276 kobject_put(&dev->kobj);
4593fdbe
AM
277
278 q->mq_sysfs_init_done = false;
c0f3fd2b
JA
279}
280
868f2f0b
KB
281void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx)
282{
283 kobject_init(&hctx->kobj, &blk_mq_hw_ktype);
284}
285
7ea5fe31
ML
286void blk_mq_sysfs_deinit(struct request_queue *q)
287{
288 struct blk_mq_ctx *ctx;
289 int cpu;
290
291 for_each_possible_cpu(cpu) {
292 ctx = per_cpu_ptr(q->queue_ctx, cpu);
293 kobject_put(&ctx->kobj);
294 }
1db4909e 295 kobject_put(q->mq_kobj);
7ea5fe31
ML
296}
297
737f98cf 298void blk_mq_sysfs_init(struct request_queue *q)
67aec14c 299{
67aec14c 300 struct blk_mq_ctx *ctx;
897bb0c7 301 int cpu;
67aec14c 302
1db4909e 303 kobject_init(q->mq_kobj, &blk_mq_ktype);
67aec14c 304
897bb0c7
TG
305 for_each_possible_cpu(cpu) {
306 ctx = per_cpu_ptr(q->queue_ctx, cpu);
1db4909e
ML
307
308 kobject_get(q->mq_kobj);
06a41a99 309 kobject_init(&ctx->kobj, &blk_mq_ctx_ktype);
897bb0c7 310 }
67aec14c
JA
311}
312
2d0364c8 313int __blk_mq_register_dev(struct device *dev, struct request_queue *q)
320ae51f 314{
320ae51f 315 struct blk_mq_hw_ctx *hctx;
67aec14c 316 int ret, i;
320ae51f 317
2d0364c8
BVA
318 WARN_ON_ONCE(!q->kobj.parent);
319 lockdep_assert_held(&q->sysfs_lock);
4593fdbe 320
1db4909e 321 ret = kobject_add(q->mq_kobj, kobject_get(&dev->kobj), "%s", "mq");
320ae51f 322 if (ret < 0)
4593fdbe 323 goto out;
320ae51f 324
1db4909e 325 kobject_uevent(q->mq_kobj, KOBJ_ADD);
320ae51f
JA
326
327 queue_for_each_hw_ctx(q, hctx, i) {
67aec14c 328 ret = blk_mq_register_hctx(hctx);
320ae51f 329 if (ret)
f05d1ba7 330 goto unreg;
320ae51f
JA
331 }
332
f05d1ba7 333 q->mq_sysfs_init_done = true;
2d0364c8 334
4593fdbe 335out:
2d0364c8 336 return ret;
f05d1ba7
BVA
337
338unreg:
339 while (--i >= 0)
340 blk_mq_unregister_hctx(q->queue_hw_ctx[i]);
341
1db4909e
ML
342 kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
343 kobject_del(q->mq_kobj);
f05d1ba7
BVA
344 kobject_put(&dev->kobj);
345 return ret;
2d0364c8
BVA
346}
347
348int blk_mq_register_dev(struct device *dev, struct request_queue *q)
349{
350 int ret;
351
352 mutex_lock(&q->sysfs_lock);
353 ret = __blk_mq_register_dev(dev, q);
354 mutex_unlock(&q->sysfs_lock);
320ae51f 355
4593fdbe 356 return ret;
320ae51f 357}
67aec14c
JA
358
359void blk_mq_sysfs_unregister(struct request_queue *q)
360{
361 struct blk_mq_hw_ctx *hctx;
362 int i;
363
2d0364c8 364 mutex_lock(&q->sysfs_lock);
4593fdbe 365 if (!q->mq_sysfs_init_done)
2d0364c8 366 goto unlock;
4593fdbe 367
67aec14c
JA
368 queue_for_each_hw_ctx(q, hctx, i)
369 blk_mq_unregister_hctx(hctx);
2d0364c8
BVA
370
371unlock:
372 mutex_unlock(&q->sysfs_lock);
67aec14c
JA
373}
374
375int blk_mq_sysfs_register(struct request_queue *q)
376{
377 struct blk_mq_hw_ctx *hctx;
378 int i, ret = 0;
379
2d0364c8 380 mutex_lock(&q->sysfs_lock);
4593fdbe 381 if (!q->mq_sysfs_init_done)
2d0364c8 382 goto unlock;
4593fdbe 383
67aec14c
JA
384 queue_for_each_hw_ctx(q, hctx, i) {
385 ret = blk_mq_register_hctx(hctx);
386 if (ret)
387 break;
388 }
389
2d0364c8
BVA
390unlock:
391 mutex_unlock(&q->sysfs_lock);
392
67aec14c
JA
393 return ret;
394}