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