Linux Audio

Check our new training course

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