blkcg: change blkg reference counting to use percpu_ref
[sfrench/cifs-2.6.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 const char *const hctx_types[] = {
177         [HCTX_TYPE_DEFAULT]     = "default",
178         [HCTX_TYPE_READ]        = "read",
179         [HCTX_TYPE_POLL]        = "poll",
180 };
181
182 static ssize_t blk_mq_hw_sysfs_type_show(struct blk_mq_hw_ctx *hctx, char *page)
183 {
184         BUILD_BUG_ON(ARRAY_SIZE(hctx_types) != HCTX_MAX_TYPES);
185         return sprintf(page, "%s\n", hctx_types[hctx->type]);
186 }
187
188 static struct attribute *default_ctx_attrs[] = {
189         NULL,
190 };
191
192 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags = {
193         .attr = {.name = "nr_tags", .mode = 0444 },
194         .show = blk_mq_hw_sysfs_nr_tags_show,
195 };
196 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags = {
197         .attr = {.name = "nr_reserved_tags", .mode = 0444 },
198         .show = blk_mq_hw_sysfs_nr_reserved_tags_show,
199 };
200 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus = {
201         .attr = {.name = "cpu_list", .mode = 0444 },
202         .show = blk_mq_hw_sysfs_cpus_show,
203 };
204 static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_type = {
205         .attr = {.name = "type", .mode = 0444 },
206         .show = blk_mq_hw_sysfs_type_show,
207 };
208
209 static struct attribute *default_hw_ctx_attrs[] = {
210         &blk_mq_hw_sysfs_nr_tags.attr,
211         &blk_mq_hw_sysfs_nr_reserved_tags.attr,
212         &blk_mq_hw_sysfs_cpus.attr,
213         &blk_mq_hw_sysfs_type.attr,
214         NULL,
215 };
216
217 static const struct sysfs_ops blk_mq_sysfs_ops = {
218         .show   = blk_mq_sysfs_show,
219         .store  = blk_mq_sysfs_store,
220 };
221
222 static const struct sysfs_ops blk_mq_hw_sysfs_ops = {
223         .show   = blk_mq_hw_sysfs_show,
224         .store  = blk_mq_hw_sysfs_store,
225 };
226
227 static struct kobj_type blk_mq_ktype = {
228         .sysfs_ops      = &blk_mq_sysfs_ops,
229         .release        = blk_mq_sysfs_release,
230 };
231
232 static struct kobj_type blk_mq_ctx_ktype = {
233         .sysfs_ops      = &blk_mq_sysfs_ops,
234         .default_attrs  = default_ctx_attrs,
235         .release        = blk_mq_ctx_sysfs_release,
236 };
237
238 static struct kobj_type blk_mq_hw_ktype = {
239         .sysfs_ops      = &blk_mq_hw_sysfs_ops,
240         .default_attrs  = default_hw_ctx_attrs,
241         .release        = blk_mq_hw_sysfs_release,
242 };
243
244 static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx *hctx)
245 {
246         struct blk_mq_ctx *ctx;
247         int i;
248
249         if (!hctx->nr_ctx)
250                 return;
251
252         hctx_for_each_ctx(hctx, ctx, i)
253                 kobject_del(&ctx->kobj);
254
255         kobject_del(&hctx->kobj);
256 }
257
258 static int blk_mq_register_hctx(struct blk_mq_hw_ctx *hctx)
259 {
260         struct request_queue *q = hctx->queue;
261         struct blk_mq_ctx *ctx;
262         int i, ret;
263
264         if (!hctx->nr_ctx)
265                 return 0;
266
267         ret = kobject_add(&hctx->kobj, q->mq_kobj, "%u", hctx->queue_num);
268         if (ret)
269                 return ret;
270
271         hctx_for_each_ctx(hctx, ctx, i) {
272                 ret = kobject_add(&ctx->kobj, &hctx->kobj, "cpu%u", ctx->cpu);
273                 if (ret)
274                         break;
275         }
276
277         return ret;
278 }
279
280 void blk_mq_unregister_dev(struct device *dev, struct request_queue *q)
281 {
282         struct blk_mq_hw_ctx *hctx;
283         int i;
284
285         lockdep_assert_held(&q->sysfs_lock);
286
287         queue_for_each_hw_ctx(q, hctx, i)
288                 blk_mq_unregister_hctx(hctx);
289
290         kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
291         kobject_del(q->mq_kobj);
292         kobject_put(&dev->kobj);
293
294         q->mq_sysfs_init_done = false;
295 }
296
297 void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx)
298 {
299         kobject_init(&hctx->kobj, &blk_mq_hw_ktype);
300 }
301
302 void blk_mq_sysfs_deinit(struct request_queue *q)
303 {
304         struct blk_mq_ctx *ctx;
305         int cpu;
306
307         for_each_possible_cpu(cpu) {
308                 ctx = per_cpu_ptr(q->queue_ctx, cpu);
309                 kobject_put(&ctx->kobj);
310         }
311         kobject_put(q->mq_kobj);
312 }
313
314 void blk_mq_sysfs_init(struct request_queue *q)
315 {
316         struct blk_mq_ctx *ctx;
317         int cpu;
318
319         kobject_init(q->mq_kobj, &blk_mq_ktype);
320
321         for_each_possible_cpu(cpu) {
322                 ctx = per_cpu_ptr(q->queue_ctx, cpu);
323
324                 kobject_get(q->mq_kobj);
325                 kobject_init(&ctx->kobj, &blk_mq_ctx_ktype);
326         }
327 }
328
329 int __blk_mq_register_dev(struct device *dev, struct request_queue *q)
330 {
331         struct blk_mq_hw_ctx *hctx;
332         int ret, i;
333
334         WARN_ON_ONCE(!q->kobj.parent);
335         lockdep_assert_held(&q->sysfs_lock);
336
337         ret = kobject_add(q->mq_kobj, kobject_get(&dev->kobj), "%s", "mq");
338         if (ret < 0)
339                 goto out;
340
341         kobject_uevent(q->mq_kobj, KOBJ_ADD);
342
343         queue_for_each_hw_ctx(q, hctx, i) {
344                 ret = blk_mq_register_hctx(hctx);
345                 if (ret)
346                         goto unreg;
347         }
348
349         q->mq_sysfs_init_done = true;
350
351 out:
352         return ret;
353
354 unreg:
355         while (--i >= 0)
356                 blk_mq_unregister_hctx(q->queue_hw_ctx[i]);
357
358         kobject_uevent(q->mq_kobj, KOBJ_REMOVE);
359         kobject_del(q->mq_kobj);
360         kobject_put(&dev->kobj);
361         return ret;
362 }
363
364 int blk_mq_register_dev(struct device *dev, struct request_queue *q)
365 {
366         int ret;
367
368         mutex_lock(&q->sysfs_lock);
369         ret = __blk_mq_register_dev(dev, q);
370         mutex_unlock(&q->sysfs_lock);
371
372         return ret;
373 }
374
375 void blk_mq_sysfs_unregister(struct request_queue *q)
376 {
377         struct blk_mq_hw_ctx *hctx;
378         int i;
379
380         mutex_lock(&q->sysfs_lock);
381         if (!q->mq_sysfs_init_done)
382                 goto unlock;
383
384         queue_for_each_hw_ctx(q, hctx, i)
385                 blk_mq_unregister_hctx(hctx);
386
387 unlock:
388         mutex_unlock(&q->sysfs_lock);
389 }
390
391 int blk_mq_sysfs_register(struct request_queue *q)
392 {
393         struct blk_mq_hw_ctx *hctx;
394         int i, ret = 0;
395
396         mutex_lock(&q->sysfs_lock);
397         if (!q->mq_sysfs_init_done)
398                 goto unlock;
399
400         queue_for_each_hw_ctx(q, hctx, i) {
401                 ret = blk_mq_register_hctx(hctx);
402                 if (ret)
403                         break;
404         }
405
406 unlock:
407         mutex_unlock(&q->sysfs_lock);
408
409         return ret;
410 }