Christoph Hellwig | 3dcf60b | 2019-04-30 14:42:43 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 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> |
Ming Lei | c7e2d94 | 2019-04-30 09:52:25 +0800 | [diff] [blame] | 14 | #include "blk.h" |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 15 | #include "blk-mq.h" |
| 16 | #include "blk-mq-tag.h" |
| 17 | |
| 18 | static void blk_mq_sysfs_release(struct kobject *kobj) |
| 19 | { |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 20 | 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 | |
| 26 | static 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 Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 32 | } |
| 33 | |
Ming Lei | 6c8b232 | 2017-02-22 18:14:01 +0800 | [diff] [blame] | 34 | static 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 Lei | c7e2d94 | 2019-04-30 09:52:25 +0800 | [diff] [blame] | 38 | |
Ming Lei | c7e2d94 | 2019-04-30 09:52:25 +0800 | [diff] [blame] | 39 | blk_free_flush_queue(hctx->fq); |
| 40 | sbitmap_free(&hctx->ctx_map); |
Ming Lei | 01388df | 2017-02-22 18:14:02 +0800 | [diff] [blame] | 41 | free_cpumask_var(hctx->cpumask); |
Ming Lei | 6c8b232 | 2017-02-22 18:14:01 +0800 | [diff] [blame] | 42 | kfree(hctx->ctxs); |
| 43 | kfree(hctx); |
| 44 | } |
| 45 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 46 | struct 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 Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 52 | static 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 Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 67 | mutex_lock(&q->sysfs_lock); |
Bart Van Assche | bae85c1 | 2019-09-30 16:00:43 -0700 | [diff] [blame] | 68 | res = entry->show(hctx, page); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 69 | mutex_unlock(&q->sysfs_lock); |
| 70 | return res; |
| 71 | } |
| 72 | |
| 73 | static 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 Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 89 | mutex_lock(&q->sysfs_lock); |
Bart Van Assche | bae85c1 | 2019-09-30 16:00:43 -0700 | [diff] [blame] | 90 | res = entry->store(hctx, page, length); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 91 | mutex_unlock(&q->sysfs_lock); |
| 92 | return res; |
| 93 | } |
| 94 | |
Omar Sandoval | d96b37c | 2017-01-25 08:06:46 -0800 | [diff] [blame] | 95 | static ssize_t blk_mq_hw_sysfs_nr_tags_show(struct blk_mq_hw_ctx *hctx, |
| 96 | char *page) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 97 | { |
Omar Sandoval | d96b37c | 2017-01-25 08:06:46 -0800 | [diff] [blame] | 98 | return sprintf(page, "%u\n", hctx->tags->nr_tags); |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Omar Sandoval | d96b37c | 2017-01-25 08:06:46 -0800 | [diff] [blame] | 101 | static ssize_t blk_mq_hw_sysfs_nr_reserved_tags_show(struct blk_mq_hw_ctx *hctx, |
| 102 | char *page) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 103 | { |
Omar Sandoval | d96b37c | 2017-01-25 08:06:46 -0800 | [diff] [blame] | 104 | return sprintf(page, "%u\n", hctx->tags->nr_reserved_tags); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 105 | } |
| 106 | |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 107 | static ssize_t blk_mq_hw_sysfs_cpus_show(struct blk_mq_hw_ctx *hctx, char *page) |
| 108 | { |
Ming Lei | 8962842 | 2019-11-02 16:02:15 +0800 | [diff] [blame] | 109 | const size_t size = PAGE_SIZE - 1; |
Jens Axboe | cb2da43 | 2014-04-09 10:53:21 -0600 | [diff] [blame] | 110 | unsigned int i, first = 1; |
Ming Lei | 8962842 | 2019-11-02 16:02:15 +0800 | [diff] [blame] | 111 | int ret = 0, pos = 0; |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 112 | |
Jens Axboe | cb2da43 | 2014-04-09 10:53:21 -0600 | [diff] [blame] | 113 | for_each_cpu(i, hctx->cpumask) { |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 114 | if (first) |
Ming Lei | 8962842 | 2019-11-02 16:02:15 +0800 | [diff] [blame] | 115 | ret = snprintf(pos + page, size - pos, "%u", i); |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 116 | else |
Ming Lei | 8962842 | 2019-11-02 16:02:15 +0800 | [diff] [blame] | 117 | ret = snprintf(pos + page, size - pos, ", %u", i); |
| 118 | |
| 119 | if (ret >= size - pos) |
| 120 | break; |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 121 | |
| 122 | first = 0; |
Ming Lei | 8962842 | 2019-11-02 16:02:15 +0800 | [diff] [blame] | 123 | pos += ret; |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 124 | } |
| 125 | |
Ming Lei | d2c9be8 | 2019-11-04 16:26:53 +0800 | [diff] [blame] | 126 | ret = snprintf(pos + page, size + 1 - pos, "\n"); |
Ming Lei | 8962842 | 2019-11-02 16:02:15 +0800 | [diff] [blame] | 127 | return pos + ret; |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 128 | } |
| 129 | |
Omar Sandoval | d96b37c | 2017-01-25 08:06:46 -0800 | [diff] [blame] | 130 | static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_tags = { |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 131 | .attr = {.name = "nr_tags", .mode = 0444 }, |
Omar Sandoval | d96b37c | 2017-01-25 08:06:46 -0800 | [diff] [blame] | 132 | .show = blk_mq_hw_sysfs_nr_tags_show, |
| 133 | }; |
| 134 | static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_nr_reserved_tags = { |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 135 | .attr = {.name = "nr_reserved_tags", .mode = 0444 }, |
Omar Sandoval | d96b37c | 2017-01-25 08:06:46 -0800 | [diff] [blame] | 136 | .show = blk_mq_hw_sysfs_nr_reserved_tags_show, |
| 137 | }; |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 138 | static struct blk_mq_hw_ctx_sysfs_entry blk_mq_hw_sysfs_cpus = { |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 139 | .attr = {.name = "cpu_list", .mode = 0444 }, |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 140 | .show = blk_mq_hw_sysfs_cpus_show, |
| 141 | }; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 142 | |
| 143 | static struct attribute *default_hw_ctx_attrs[] = { |
Omar Sandoval | d96b37c | 2017-01-25 08:06:46 -0800 | [diff] [blame] | 144 | &blk_mq_hw_sysfs_nr_tags.attr, |
| 145 | &blk_mq_hw_sysfs_nr_reserved_tags.attr, |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 146 | &blk_mq_hw_sysfs_cpus.attr, |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 147 | NULL, |
| 148 | }; |
Kimberly Brown | 800f5aa | 2019-04-01 22:51:30 -0400 | [diff] [blame] | 149 | ATTRIBUTE_GROUPS(default_hw_ctx); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 150 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 151 | static 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 | |
| 156 | static struct kobj_type blk_mq_ktype = { |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 157 | .release = blk_mq_sysfs_release, |
| 158 | }; |
| 159 | |
| 160 | static struct kobj_type blk_mq_ctx_ktype = { |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 161 | .release = blk_mq_ctx_sysfs_release, |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 162 | }; |
| 163 | |
| 164 | static struct kobj_type blk_mq_hw_ktype = { |
| 165 | .sysfs_ops = &blk_mq_hw_sysfs_ops, |
Kimberly Brown | 800f5aa | 2019-04-01 22:51:30 -0400 | [diff] [blame] | 166 | .default_groups = default_hw_ctx_groups, |
Ming Lei | 6c8b232 | 2017-02-22 18:14:01 +0800 | [diff] [blame] | 167 | .release = blk_mq_hw_sysfs_release, |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 168 | }; |
| 169 | |
Fengguang Wu | ee3c5db | 2014-05-30 10:31:13 -0600 | [diff] [blame] | 170 | static void blk_mq_unregister_hctx(struct blk_mq_hw_ctx *hctx) |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 171 | { |
| 172 | struct blk_mq_ctx *ctx; |
| 173 | int i; |
| 174 | |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 175 | if (!hctx->nr_ctx) |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 176 | return; |
| 177 | |
| 178 | hctx_for_each_ctx(hctx, ctx, i) |
| 179 | kobject_del(&ctx->kobj); |
| 180 | |
| 181 | kobject_del(&hctx->kobj); |
| 182 | } |
| 183 | |
Fengguang Wu | ee3c5db | 2014-05-30 10:31:13 -0600 | [diff] [blame] | 184 | static int blk_mq_register_hctx(struct blk_mq_hw_ctx *hctx) |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 185 | { |
| 186 | struct request_queue *q = hctx->queue; |
| 187 | struct blk_mq_ctx *ctx; |
| 188 | int i, ret; |
| 189 | |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 190 | if (!hctx->nr_ctx) |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 191 | return 0; |
| 192 | |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 193 | ret = kobject_add(&hctx->kobj, q->mq_kobj, "%u", hctx->queue_num); |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 194 | 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 Snitzer | 667257e | 2018-01-11 14:11:01 -0500 | [diff] [blame] | 206 | void blk_mq_unregister_dev(struct device *dev, struct request_queue *q) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 207 | { |
Andrey Vagin | 8515736 | 2013-12-06 09:06:41 +0400 | [diff] [blame] | 208 | struct blk_mq_hw_ctx *hctx; |
Ming Lei | 7ea5fe3 | 2017-02-22 18:14:00 +0800 | [diff] [blame] | 209 | int i; |
Andrey Vagin | 8515736 | 2013-12-06 09:06:41 +0400 | [diff] [blame] | 210 | |
Ming Lei | cecf5d8 | 2019-08-27 19:01:48 +0800 | [diff] [blame] | 211 | lockdep_assert_held(&q->sysfs_dir_lock); |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 212 | |
Ming Lei | 6c8b232 | 2017-02-22 18:14:01 +0800 | [diff] [blame] | 213 | queue_for_each_hw_ctx(q, hctx, i) |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 214 | blk_mq_unregister_hctx(hctx); |
| 215 | |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 216 | kobject_uevent(q->mq_kobj, KOBJ_REMOVE); |
| 217 | kobject_del(q->mq_kobj); |
Matias Bjørling | b21d5b3 | 2016-09-16 14:25:06 +0200 | [diff] [blame] | 218 | kobject_put(&dev->kobj); |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 219 | |
| 220 | q->mq_sysfs_init_done = false; |
Jens Axboe | c0f3fd2 | 2016-08-02 08:45:44 -0600 | [diff] [blame] | 221 | } |
| 222 | |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 223 | void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx) |
| 224 | { |
| 225 | kobject_init(&hctx->kobj, &blk_mq_hw_ktype); |
| 226 | } |
| 227 | |
Ming Lei | 7ea5fe3 | 2017-02-22 18:14:00 +0800 | [diff] [blame] | 228 | void 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 Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 237 | kobject_put(q->mq_kobj); |
Ming Lei | 7ea5fe3 | 2017-02-22 18:14:00 +0800 | [diff] [blame] | 238 | } |
| 239 | |
Ming Lei | 737f98c | 2017-02-22 18:13:59 +0800 | [diff] [blame] | 240 | void blk_mq_sysfs_init(struct request_queue *q) |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 241 | { |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 242 | struct blk_mq_ctx *ctx; |
Thomas Gleixner | 897bb0c | 2016-03-19 11:30:33 +0100 | [diff] [blame] | 243 | int cpu; |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 244 | |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 245 | kobject_init(q->mq_kobj, &blk_mq_ktype); |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 246 | |
Thomas Gleixner | 897bb0c | 2016-03-19 11:30:33 +0100 | [diff] [blame] | 247 | for_each_possible_cpu(cpu) { |
| 248 | ctx = per_cpu_ptr(q->queue_ctx, cpu); |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 249 | |
| 250 | kobject_get(q->mq_kobj); |
Takashi Iwai | 06a41a9 | 2014-12-10 16:38:30 +0100 | [diff] [blame] | 251 | kobject_init(&ctx->kobj, &blk_mq_ctx_ktype); |
Thomas Gleixner | 897bb0c | 2016-03-19 11:30:33 +0100 | [diff] [blame] | 252 | } |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 253 | } |
| 254 | |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 255 | int __blk_mq_register_dev(struct device *dev, struct request_queue *q) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 256 | { |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 257 | struct blk_mq_hw_ctx *hctx; |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 258 | int ret, i; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 259 | |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 260 | WARN_ON_ONCE(!q->kobj.parent); |
Ming Lei | cecf5d8 | 2019-08-27 19:01:48 +0800 | [diff] [blame] | 261 | lockdep_assert_held(&q->sysfs_dir_lock); |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 262 | |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 263 | ret = kobject_add(q->mq_kobj, kobject_get(&dev->kobj), "%s", "mq"); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 264 | if (ret < 0) |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 265 | goto out; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 266 | |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 267 | kobject_uevent(q->mq_kobj, KOBJ_ADD); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 268 | |
| 269 | queue_for_each_hw_ctx(q, hctx, i) { |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 270 | ret = blk_mq_register_hctx(hctx); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 271 | if (ret) |
Bart Van Assche | f05d1ba | 2017-04-26 13:47:51 -0700 | [diff] [blame] | 272 | goto unreg; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 273 | } |
| 274 | |
Bart Van Assche | f05d1ba | 2017-04-26 13:47:51 -0700 | [diff] [blame] | 275 | q->mq_sysfs_init_done = true; |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 276 | |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 277 | out: |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 278 | return ret; |
Bart Van Assche | f05d1ba | 2017-04-26 13:47:51 -0700 | [diff] [blame] | 279 | |
| 280 | unreg: |
| 281 | while (--i >= 0) |
| 282 | blk_mq_unregister_hctx(q->queue_hw_ctx[i]); |
| 283 | |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 284 | kobject_uevent(q->mq_kobj, KOBJ_REMOVE); |
| 285 | kobject_del(q->mq_kobj); |
Bart Van Assche | f05d1ba | 2017-04-26 13:47:51 -0700 | [diff] [blame] | 286 | kobject_put(&dev->kobj); |
| 287 | return ret; |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 288 | } |
| 289 | |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 290 | void blk_mq_sysfs_unregister(struct request_queue *q) |
| 291 | { |
| 292 | struct blk_mq_hw_ctx *hctx; |
| 293 | int i; |
| 294 | |
Ming Lei | cecf5d8 | 2019-08-27 19:01:48 +0800 | [diff] [blame] | 295 | mutex_lock(&q->sysfs_dir_lock); |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 296 | if (!q->mq_sysfs_init_done) |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 297 | goto unlock; |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 298 | |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 299 | queue_for_each_hw_ctx(q, hctx, i) |
| 300 | blk_mq_unregister_hctx(hctx); |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 301 | |
| 302 | unlock: |
Ming Lei | cecf5d8 | 2019-08-27 19:01:48 +0800 | [diff] [blame] | 303 | mutex_unlock(&q->sysfs_dir_lock); |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | int blk_mq_sysfs_register(struct request_queue *q) |
| 307 | { |
| 308 | struct blk_mq_hw_ctx *hctx; |
| 309 | int i, ret = 0; |
| 310 | |
Ming Lei | cecf5d8 | 2019-08-27 19:01:48 +0800 | [diff] [blame] | 311 | mutex_lock(&q->sysfs_dir_lock); |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 312 | if (!q->mq_sysfs_init_done) |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 313 | goto unlock; |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 314 | |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 315 | queue_for_each_hw_ctx(q, hctx, i) { |
| 316 | ret = blk_mq_register_hctx(hctx); |
| 317 | if (ret) |
| 318 | break; |
| 319 | } |
| 320 | |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 321 | unlock: |
Ming Lei | cecf5d8 | 2019-08-27 19:01:48 +0800 | [diff] [blame] | 322 | mutex_unlock(&q->sysfs_dir_lock); |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 323 | |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 324 | return ret; |
| 325 | } |