xref: /linux/block/blk-mq-debugfs.c (revision cc76ace465d6977b47daa427379b7be1e0976f12)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2017 Facebook
4  */
5 
6 #include <linux/kernel.h>
7 #include <linux/blkdev.h>
8 #include <linux/build_bug.h>
9 #include <linux/debugfs.h>
10 
11 #include "blk.h"
12 #include "blk-mq.h"
13 #include "blk-mq-debugfs.h"
14 #include "blk-mq-sched.h"
15 #include "blk-rq-qos.h"
16 
17 static int queue_poll_stat_show(void *data, struct seq_file *m)
18 {
19 	return 0;
20 }
21 
22 static void *queue_requeue_list_start(struct seq_file *m, loff_t *pos)
23 	__acquires(&q->requeue_lock)
24 {
25 	struct request_queue *q = m->private;
26 
27 	spin_lock_irq(&q->requeue_lock);
28 	return seq_list_start(&q->requeue_list, *pos);
29 }
30 
31 static void *queue_requeue_list_next(struct seq_file *m, void *v, loff_t *pos)
32 {
33 	struct request_queue *q = m->private;
34 
35 	return seq_list_next(v, &q->requeue_list, pos);
36 }
37 
38 static void queue_requeue_list_stop(struct seq_file *m, void *v)
39 	__releases(&q->requeue_lock)
40 {
41 	struct request_queue *q = m->private;
42 
43 	spin_unlock_irq(&q->requeue_lock);
44 }
45 
46 static const struct seq_operations queue_requeue_list_seq_ops = {
47 	.start	= queue_requeue_list_start,
48 	.next	= queue_requeue_list_next,
49 	.stop	= queue_requeue_list_stop,
50 	.show	= blk_mq_debugfs_rq_show,
51 };
52 
53 static int blk_flags_show(struct seq_file *m, const unsigned long flags,
54 			  const char *const *flag_name, int flag_name_count)
55 {
56 	bool sep = false;
57 	int i;
58 
59 	for (i = 0; i < sizeof(flags) * BITS_PER_BYTE; i++) {
60 		if (!(flags & BIT(i)))
61 			continue;
62 		if (sep)
63 			seq_puts(m, "|");
64 		sep = true;
65 		if (i < flag_name_count && flag_name[i])
66 			seq_puts(m, flag_name[i]);
67 		else
68 			seq_printf(m, "%d", i);
69 	}
70 	return 0;
71 }
72 
73 static int queue_pm_only_show(void *data, struct seq_file *m)
74 {
75 	struct request_queue *q = data;
76 
77 	seq_printf(m, "%d\n", atomic_read(&q->pm_only));
78 	return 0;
79 }
80 
81 #define QUEUE_FLAG_NAME(name) [QUEUE_FLAG_##name] = #name
82 static const char *const blk_queue_flag_name[] = {
83 	QUEUE_FLAG_NAME(DYING),
84 	QUEUE_FLAG_NAME(NOMERGES),
85 	QUEUE_FLAG_NAME(SAME_COMP),
86 	QUEUE_FLAG_NAME(FAIL_IO),
87 	QUEUE_FLAG_NAME(NOXMERGES),
88 	QUEUE_FLAG_NAME(SAME_FORCE),
89 	QUEUE_FLAG_NAME(INIT_DONE),
90 	QUEUE_FLAG_NAME(STATS),
91 	QUEUE_FLAG_NAME(REGISTERED),
92 	QUEUE_FLAG_NAME(QUIESCED),
93 	QUEUE_FLAG_NAME(RQ_ALLOC_TIME),
94 	QUEUE_FLAG_NAME(HCTX_ACTIVE),
95 	QUEUE_FLAG_NAME(SQ_SCHED),
96 };
97 #undef QUEUE_FLAG_NAME
98 
99 static int queue_state_show(void *data, struct seq_file *m)
100 {
101 	struct request_queue *q = data;
102 
103 	BUILD_BUG_ON(ARRAY_SIZE(blk_queue_flag_name) != QUEUE_FLAG_MAX);
104 	blk_flags_show(m, q->queue_flags, blk_queue_flag_name,
105 		       ARRAY_SIZE(blk_queue_flag_name));
106 	seq_puts(m, "\n");
107 	return 0;
108 }
109 
110 static ssize_t queue_state_write(void *data, const char __user *buf,
111 				 size_t count, loff_t *ppos)
112 {
113 	struct request_queue *q = data;
114 	char opbuf[16] = { }, *op;
115 
116 	/*
117 	 * The "state" attribute is removed when the queue is removed.  Don't
118 	 * allow setting the state on a dying queue to avoid a use-after-free.
119 	 */
120 	if (blk_queue_dying(q))
121 		return -ENOENT;
122 
123 	if (count >= sizeof(opbuf)) {
124 		pr_err("%s: operation too long\n", __func__);
125 		goto inval;
126 	}
127 
128 	if (copy_from_user(opbuf, buf, count))
129 		return -EFAULT;
130 	op = strstrip(opbuf);
131 	if (strcmp(op, "run") == 0) {
132 		blk_mq_run_hw_queues(q, true);
133 	} else if (strcmp(op, "start") == 0) {
134 		blk_mq_start_stopped_hw_queues(q, true);
135 	} else if (strcmp(op, "kick") == 0) {
136 		blk_mq_kick_requeue_list(q);
137 	} else {
138 		pr_err("%s: unsupported operation '%s'\n", __func__, op);
139 inval:
140 		pr_err("%s: use 'run', 'start' or 'kick'\n", __func__);
141 		return -EINVAL;
142 	}
143 	return count;
144 }
145 
146 static const struct blk_mq_debugfs_attr blk_mq_debugfs_queue_attrs[] = {
147 	{ "poll_stat", 0400, queue_poll_stat_show },
148 	{ "requeue_list", 0400, .seq_ops = &queue_requeue_list_seq_ops },
149 	{ "pm_only", 0600, queue_pm_only_show, NULL },
150 	{ "state", 0600, queue_state_show, queue_state_write },
151 	{ "zone_wplugs", 0400, queue_zone_wplugs_show, NULL },
152 	{ },
153 };
154 
155 #define HCTX_STATE_NAME(name) [BLK_MQ_S_##name] = #name
156 static const char *const hctx_state_name[] = {
157 	HCTX_STATE_NAME(STOPPED),
158 	HCTX_STATE_NAME(TAG_ACTIVE),
159 	HCTX_STATE_NAME(SCHED_RESTART),
160 	HCTX_STATE_NAME(INACTIVE),
161 };
162 #undef HCTX_STATE_NAME
163 
164 static int hctx_state_show(void *data, struct seq_file *m)
165 {
166 	struct blk_mq_hw_ctx *hctx = data;
167 
168 	BUILD_BUG_ON(ARRAY_SIZE(hctx_state_name) != BLK_MQ_S_MAX);
169 	blk_flags_show(m, hctx->state, hctx_state_name,
170 		       ARRAY_SIZE(hctx_state_name));
171 	seq_puts(m, "\n");
172 	return 0;
173 }
174 
175 #define BLK_TAG_ALLOC_NAME(name) [BLK_TAG_ALLOC_##name] = #name
176 static const char *const alloc_policy_name[] = {
177 	BLK_TAG_ALLOC_NAME(FIFO),
178 	BLK_TAG_ALLOC_NAME(RR),
179 };
180 #undef BLK_TAG_ALLOC_NAME
181 
182 #define HCTX_FLAG_NAME(name) [ilog2(BLK_MQ_F_##name)] = #name
183 static const char *const hctx_flag_name[] = {
184 	HCTX_FLAG_NAME(TAG_QUEUE_SHARED),
185 	HCTX_FLAG_NAME(STACKING),
186 	HCTX_FLAG_NAME(TAG_HCTX_SHARED),
187 	HCTX_FLAG_NAME(BLOCKING),
188 	HCTX_FLAG_NAME(NO_SCHED),
189 	HCTX_FLAG_NAME(NO_SCHED_BY_DEFAULT),
190 };
191 #undef HCTX_FLAG_NAME
192 
193 static int hctx_flags_show(void *data, struct seq_file *m)
194 {
195 	struct blk_mq_hw_ctx *hctx = data;
196 	const int alloc_policy = BLK_MQ_FLAG_TO_ALLOC_POLICY(hctx->flags);
197 
198 	BUILD_BUG_ON(ARRAY_SIZE(hctx_flag_name) !=
199 			BLK_MQ_F_ALLOC_POLICY_START_BIT);
200 	BUILD_BUG_ON(ARRAY_SIZE(alloc_policy_name) != BLK_TAG_ALLOC_MAX);
201 
202 	seq_puts(m, "alloc_policy=");
203 	if (alloc_policy < ARRAY_SIZE(alloc_policy_name) &&
204 	    alloc_policy_name[alloc_policy])
205 		seq_puts(m, alloc_policy_name[alloc_policy]);
206 	else
207 		seq_printf(m, "%d", alloc_policy);
208 	seq_puts(m, " ");
209 	blk_flags_show(m,
210 		       hctx->flags ^ BLK_ALLOC_POLICY_TO_MQ_FLAG(alloc_policy),
211 		       hctx_flag_name, ARRAY_SIZE(hctx_flag_name));
212 	seq_puts(m, "\n");
213 	return 0;
214 }
215 
216 #define CMD_FLAG_NAME(name) [__REQ_##name] = #name
217 static const char *const cmd_flag_name[] = {
218 	CMD_FLAG_NAME(FAILFAST_DEV),
219 	CMD_FLAG_NAME(FAILFAST_TRANSPORT),
220 	CMD_FLAG_NAME(FAILFAST_DRIVER),
221 	CMD_FLAG_NAME(SYNC),
222 	CMD_FLAG_NAME(META),
223 	CMD_FLAG_NAME(PRIO),
224 	CMD_FLAG_NAME(NOMERGE),
225 	CMD_FLAG_NAME(IDLE),
226 	CMD_FLAG_NAME(INTEGRITY),
227 	CMD_FLAG_NAME(FUA),
228 	CMD_FLAG_NAME(PREFLUSH),
229 	CMD_FLAG_NAME(RAHEAD),
230 	CMD_FLAG_NAME(BACKGROUND),
231 	CMD_FLAG_NAME(NOWAIT),
232 	CMD_FLAG_NAME(POLLED),
233 	CMD_FLAG_NAME(ALLOC_CACHE),
234 	CMD_FLAG_NAME(SWAP),
235 	CMD_FLAG_NAME(DRV),
236 	CMD_FLAG_NAME(FS_PRIVATE),
237 	CMD_FLAG_NAME(ATOMIC),
238 	CMD_FLAG_NAME(NOUNMAP),
239 };
240 #undef CMD_FLAG_NAME
241 
242 #define RQF_NAME(name) [__RQF_##name] = #name
243 static const char *const rqf_name[] = {
244 	RQF_NAME(STARTED),
245 	RQF_NAME(FLUSH_SEQ),
246 	RQF_NAME(MIXED_MERGE),
247 	RQF_NAME(DONTPREP),
248 	RQF_NAME(SCHED_TAGS),
249 	RQF_NAME(USE_SCHED),
250 	RQF_NAME(FAILED),
251 	RQF_NAME(QUIET),
252 	RQF_NAME(IO_STAT),
253 	RQF_NAME(PM),
254 	RQF_NAME(HASHED),
255 	RQF_NAME(STATS),
256 	RQF_NAME(SPECIAL_PAYLOAD),
257 	RQF_NAME(ZONE_WRITE_PLUGGING),
258 	RQF_NAME(TIMED_OUT),
259 	RQF_NAME(RESV),
260 };
261 #undef RQF_NAME
262 
263 static const char *const blk_mq_rq_state_name_array[] = {
264 	[MQ_RQ_IDLE]		= "idle",
265 	[MQ_RQ_IN_FLIGHT]	= "in_flight",
266 	[MQ_RQ_COMPLETE]	= "complete",
267 };
268 
269 static const char *blk_mq_rq_state_name(enum mq_rq_state rq_state)
270 {
271 	if (WARN_ON_ONCE((unsigned int)rq_state >=
272 			 ARRAY_SIZE(blk_mq_rq_state_name_array)))
273 		return "(?)";
274 	return blk_mq_rq_state_name_array[rq_state];
275 }
276 
277 int __blk_mq_debugfs_rq_show(struct seq_file *m, struct request *rq)
278 {
279 	const struct blk_mq_ops *const mq_ops = rq->q->mq_ops;
280 	const enum req_op op = req_op(rq);
281 	const char *op_str = blk_op_str(op);
282 
283 	BUILD_BUG_ON(ARRAY_SIZE(cmd_flag_name) != __REQ_NR_BITS);
284 	BUILD_BUG_ON(ARRAY_SIZE(rqf_name) != __RQF_BITS);
285 
286 	seq_printf(m, "%p {.op=", rq);
287 	if (strcmp(op_str, "UNKNOWN") == 0)
288 		seq_printf(m, "%u", op);
289 	else
290 		seq_printf(m, "%s", op_str);
291 	seq_puts(m, ", .cmd_flags=");
292 	blk_flags_show(m, (__force unsigned int)(rq->cmd_flags & ~REQ_OP_MASK),
293 		       cmd_flag_name, ARRAY_SIZE(cmd_flag_name));
294 	seq_puts(m, ", .rq_flags=");
295 	blk_flags_show(m, (__force unsigned int)rq->rq_flags, rqf_name,
296 		       ARRAY_SIZE(rqf_name));
297 	seq_printf(m, ", .state=%s", blk_mq_rq_state_name(blk_mq_rq_state(rq)));
298 	seq_printf(m, ", .tag=%d, .internal_tag=%d", rq->tag,
299 		   rq->internal_tag);
300 	if (mq_ops->show_rq)
301 		mq_ops->show_rq(m, rq);
302 	seq_puts(m, "}\n");
303 	return 0;
304 }
305 EXPORT_SYMBOL_GPL(__blk_mq_debugfs_rq_show);
306 
307 int blk_mq_debugfs_rq_show(struct seq_file *m, void *v)
308 {
309 	return __blk_mq_debugfs_rq_show(m, list_entry_rq(v));
310 }
311 EXPORT_SYMBOL_GPL(blk_mq_debugfs_rq_show);
312 
313 static void *hctx_dispatch_start(struct seq_file *m, loff_t *pos)
314 	__acquires(&hctx->lock)
315 {
316 	struct blk_mq_hw_ctx *hctx = m->private;
317 
318 	spin_lock(&hctx->lock);
319 	return seq_list_start(&hctx->dispatch, *pos);
320 }
321 
322 static void *hctx_dispatch_next(struct seq_file *m, void *v, loff_t *pos)
323 {
324 	struct blk_mq_hw_ctx *hctx = m->private;
325 
326 	return seq_list_next(v, &hctx->dispatch, pos);
327 }
328 
329 static void hctx_dispatch_stop(struct seq_file *m, void *v)
330 	__releases(&hctx->lock)
331 {
332 	struct blk_mq_hw_ctx *hctx = m->private;
333 
334 	spin_unlock(&hctx->lock);
335 }
336 
337 static const struct seq_operations hctx_dispatch_seq_ops = {
338 	.start	= hctx_dispatch_start,
339 	.next	= hctx_dispatch_next,
340 	.stop	= hctx_dispatch_stop,
341 	.show	= blk_mq_debugfs_rq_show,
342 };
343 
344 struct show_busy_params {
345 	struct seq_file		*m;
346 	struct blk_mq_hw_ctx	*hctx;
347 };
348 
349 /*
350  * Note: the state of a request may change while this function is in progress,
351  * e.g. due to a concurrent blk_mq_finish_request() call. Returns true to
352  * keep iterating requests.
353  */
354 static bool hctx_show_busy_rq(struct request *rq, void *data)
355 {
356 	const struct show_busy_params *params = data;
357 
358 	if (rq->mq_hctx == params->hctx)
359 		__blk_mq_debugfs_rq_show(params->m, rq);
360 
361 	return true;
362 }
363 
364 static int hctx_busy_show(void *data, struct seq_file *m)
365 {
366 	struct blk_mq_hw_ctx *hctx = data;
367 	struct show_busy_params params = { .m = m, .hctx = hctx };
368 
369 	blk_mq_tagset_busy_iter(hctx->queue->tag_set, hctx_show_busy_rq,
370 				&params);
371 
372 	return 0;
373 }
374 
375 static const char *const hctx_types[] = {
376 	[HCTX_TYPE_DEFAULT]	= "default",
377 	[HCTX_TYPE_READ]	= "read",
378 	[HCTX_TYPE_POLL]	= "poll",
379 };
380 
381 static int hctx_type_show(void *data, struct seq_file *m)
382 {
383 	struct blk_mq_hw_ctx *hctx = data;
384 
385 	BUILD_BUG_ON(ARRAY_SIZE(hctx_types) != HCTX_MAX_TYPES);
386 	seq_printf(m, "%s\n", hctx_types[hctx->type]);
387 	return 0;
388 }
389 
390 static int hctx_ctx_map_show(void *data, struct seq_file *m)
391 {
392 	struct blk_mq_hw_ctx *hctx = data;
393 
394 	sbitmap_bitmap_show(&hctx->ctx_map, m);
395 	return 0;
396 }
397 
398 static void blk_mq_debugfs_tags_show(struct seq_file *m,
399 				     struct blk_mq_tags *tags)
400 {
401 	seq_printf(m, "nr_tags=%u\n", tags->nr_tags);
402 	seq_printf(m, "nr_reserved_tags=%u\n", tags->nr_reserved_tags);
403 	seq_printf(m, "active_queues=%d\n",
404 		   READ_ONCE(tags->active_queues));
405 
406 	seq_puts(m, "\nbitmap_tags:\n");
407 	sbitmap_queue_show(&tags->bitmap_tags, m);
408 
409 	if (tags->nr_reserved_tags) {
410 		seq_puts(m, "\nbreserved_tags:\n");
411 		sbitmap_queue_show(&tags->breserved_tags, m);
412 	}
413 }
414 
415 static int hctx_tags_show(void *data, struct seq_file *m)
416 {
417 	struct blk_mq_hw_ctx *hctx = data;
418 	struct request_queue *q = hctx->queue;
419 	int res;
420 
421 	res = mutex_lock_interruptible(&q->sysfs_lock);
422 	if (res)
423 		goto out;
424 	if (hctx->tags)
425 		blk_mq_debugfs_tags_show(m, hctx->tags);
426 	mutex_unlock(&q->sysfs_lock);
427 
428 out:
429 	return res;
430 }
431 
432 static int hctx_tags_bitmap_show(void *data, struct seq_file *m)
433 {
434 	struct blk_mq_hw_ctx *hctx = data;
435 	struct request_queue *q = hctx->queue;
436 	int res;
437 
438 	res = mutex_lock_interruptible(&q->sysfs_lock);
439 	if (res)
440 		goto out;
441 	if (hctx->tags)
442 		sbitmap_bitmap_show(&hctx->tags->bitmap_tags.sb, m);
443 	mutex_unlock(&q->sysfs_lock);
444 
445 out:
446 	return res;
447 }
448 
449 static int hctx_sched_tags_show(void *data, struct seq_file *m)
450 {
451 	struct blk_mq_hw_ctx *hctx = data;
452 	struct request_queue *q = hctx->queue;
453 	int res;
454 
455 	res = mutex_lock_interruptible(&q->sysfs_lock);
456 	if (res)
457 		goto out;
458 	if (hctx->sched_tags)
459 		blk_mq_debugfs_tags_show(m, hctx->sched_tags);
460 	mutex_unlock(&q->sysfs_lock);
461 
462 out:
463 	return res;
464 }
465 
466 static int hctx_sched_tags_bitmap_show(void *data, struct seq_file *m)
467 {
468 	struct blk_mq_hw_ctx *hctx = data;
469 	struct request_queue *q = hctx->queue;
470 	int res;
471 
472 	res = mutex_lock_interruptible(&q->sysfs_lock);
473 	if (res)
474 		goto out;
475 	if (hctx->sched_tags)
476 		sbitmap_bitmap_show(&hctx->sched_tags->bitmap_tags.sb, m);
477 	mutex_unlock(&q->sysfs_lock);
478 
479 out:
480 	return res;
481 }
482 
483 static int hctx_active_show(void *data, struct seq_file *m)
484 {
485 	struct blk_mq_hw_ctx *hctx = data;
486 
487 	seq_printf(m, "%d\n", __blk_mq_active_requests(hctx));
488 	return 0;
489 }
490 
491 static int hctx_dispatch_busy_show(void *data, struct seq_file *m)
492 {
493 	struct blk_mq_hw_ctx *hctx = data;
494 
495 	seq_printf(m, "%u\n", hctx->dispatch_busy);
496 	return 0;
497 }
498 
499 #define CTX_RQ_SEQ_OPS(name, type)					\
500 static void *ctx_##name##_rq_list_start(struct seq_file *m, loff_t *pos) \
501 	__acquires(&ctx->lock)						\
502 {									\
503 	struct blk_mq_ctx *ctx = m->private;				\
504 									\
505 	spin_lock(&ctx->lock);						\
506 	return seq_list_start(&ctx->rq_lists[type], *pos);		\
507 }									\
508 									\
509 static void *ctx_##name##_rq_list_next(struct seq_file *m, void *v,	\
510 				     loff_t *pos)			\
511 {									\
512 	struct blk_mq_ctx *ctx = m->private;				\
513 									\
514 	return seq_list_next(v, &ctx->rq_lists[type], pos);		\
515 }									\
516 									\
517 static void ctx_##name##_rq_list_stop(struct seq_file *m, void *v)	\
518 	__releases(&ctx->lock)						\
519 {									\
520 	struct blk_mq_ctx *ctx = m->private;				\
521 									\
522 	spin_unlock(&ctx->lock);					\
523 }									\
524 									\
525 static const struct seq_operations ctx_##name##_rq_list_seq_ops = {	\
526 	.start	= ctx_##name##_rq_list_start,				\
527 	.next	= ctx_##name##_rq_list_next,				\
528 	.stop	= ctx_##name##_rq_list_stop,				\
529 	.show	= blk_mq_debugfs_rq_show,				\
530 }
531 
532 CTX_RQ_SEQ_OPS(default, HCTX_TYPE_DEFAULT);
533 CTX_RQ_SEQ_OPS(read, HCTX_TYPE_READ);
534 CTX_RQ_SEQ_OPS(poll, HCTX_TYPE_POLL);
535 
536 static int blk_mq_debugfs_show(struct seq_file *m, void *v)
537 {
538 	const struct blk_mq_debugfs_attr *attr = m->private;
539 	void *data = d_inode(m->file->f_path.dentry->d_parent)->i_private;
540 
541 	return attr->show(data, m);
542 }
543 
544 static ssize_t blk_mq_debugfs_write(struct file *file, const char __user *buf,
545 				    size_t count, loff_t *ppos)
546 {
547 	struct seq_file *m = file->private_data;
548 	const struct blk_mq_debugfs_attr *attr = m->private;
549 	void *data = d_inode(file->f_path.dentry->d_parent)->i_private;
550 
551 	/*
552 	 * Attributes that only implement .seq_ops are read-only and 'attr' is
553 	 * the same with 'data' in this case.
554 	 */
555 	if (attr == data || !attr->write)
556 		return -EPERM;
557 
558 	return attr->write(data, buf, count, ppos);
559 }
560 
561 static int blk_mq_debugfs_open(struct inode *inode, struct file *file)
562 {
563 	const struct blk_mq_debugfs_attr *attr = inode->i_private;
564 	void *data = d_inode(file->f_path.dentry->d_parent)->i_private;
565 	struct seq_file *m;
566 	int ret;
567 
568 	if (attr->seq_ops) {
569 		ret = seq_open(file, attr->seq_ops);
570 		if (!ret) {
571 			m = file->private_data;
572 			m->private = data;
573 		}
574 		return ret;
575 	}
576 
577 	if (WARN_ON_ONCE(!attr->show))
578 		return -EPERM;
579 
580 	return single_open(file, blk_mq_debugfs_show, inode->i_private);
581 }
582 
583 static int blk_mq_debugfs_release(struct inode *inode, struct file *file)
584 {
585 	const struct blk_mq_debugfs_attr *attr = inode->i_private;
586 
587 	if (attr->show)
588 		return single_release(inode, file);
589 
590 	return seq_release(inode, file);
591 }
592 
593 static const struct file_operations blk_mq_debugfs_fops = {
594 	.open		= blk_mq_debugfs_open,
595 	.read		= seq_read,
596 	.write		= blk_mq_debugfs_write,
597 	.llseek		= seq_lseek,
598 	.release	= blk_mq_debugfs_release,
599 };
600 
601 static const struct blk_mq_debugfs_attr blk_mq_debugfs_hctx_attrs[] = {
602 	{"state", 0400, hctx_state_show},
603 	{"flags", 0400, hctx_flags_show},
604 	{"dispatch", 0400, .seq_ops = &hctx_dispatch_seq_ops},
605 	{"busy", 0400, hctx_busy_show},
606 	{"ctx_map", 0400, hctx_ctx_map_show},
607 	{"tags", 0400, hctx_tags_show},
608 	{"tags_bitmap", 0400, hctx_tags_bitmap_show},
609 	{"sched_tags", 0400, hctx_sched_tags_show},
610 	{"sched_tags_bitmap", 0400, hctx_sched_tags_bitmap_show},
611 	{"active", 0400, hctx_active_show},
612 	{"dispatch_busy", 0400, hctx_dispatch_busy_show},
613 	{"type", 0400, hctx_type_show},
614 	{},
615 };
616 
617 static const struct blk_mq_debugfs_attr blk_mq_debugfs_ctx_attrs[] = {
618 	{"default_rq_list", 0400, .seq_ops = &ctx_default_rq_list_seq_ops},
619 	{"read_rq_list", 0400, .seq_ops = &ctx_read_rq_list_seq_ops},
620 	{"poll_rq_list", 0400, .seq_ops = &ctx_poll_rq_list_seq_ops},
621 	{},
622 };
623 
624 static void debugfs_create_files(struct dentry *parent, void *data,
625 				 const struct blk_mq_debugfs_attr *attr)
626 {
627 	if (IS_ERR_OR_NULL(parent))
628 		return;
629 
630 	d_inode(parent)->i_private = data;
631 
632 	for (; attr->name; attr++)
633 		debugfs_create_file(attr->name, attr->mode, parent,
634 				    (void *)attr, &blk_mq_debugfs_fops);
635 }
636 
637 void blk_mq_debugfs_register(struct request_queue *q)
638 {
639 	struct blk_mq_hw_ctx *hctx;
640 	unsigned long i;
641 
642 	debugfs_create_files(q->debugfs_dir, q, blk_mq_debugfs_queue_attrs);
643 
644 	/*
645 	 * blk_mq_init_sched() attempted to do this already, but q->debugfs_dir
646 	 * didn't exist yet (because we don't know what to name the directory
647 	 * until the queue is registered to a gendisk).
648 	 */
649 	if (q->elevator && !q->sched_debugfs_dir)
650 		blk_mq_debugfs_register_sched(q);
651 
652 	/* Similarly, blk_mq_init_hctx() couldn't do this previously. */
653 	queue_for_each_hw_ctx(q, hctx, i) {
654 		if (!hctx->debugfs_dir)
655 			blk_mq_debugfs_register_hctx(q, hctx);
656 		if (q->elevator && !hctx->sched_debugfs_dir)
657 			blk_mq_debugfs_register_sched_hctx(q, hctx);
658 	}
659 
660 	if (q->rq_qos) {
661 		struct rq_qos *rqos = q->rq_qos;
662 
663 		while (rqos) {
664 			blk_mq_debugfs_register_rqos(rqos);
665 			rqos = rqos->next;
666 		}
667 	}
668 }
669 
670 static void blk_mq_debugfs_register_ctx(struct blk_mq_hw_ctx *hctx,
671 					struct blk_mq_ctx *ctx)
672 {
673 	struct dentry *ctx_dir;
674 	char name[20];
675 
676 	snprintf(name, sizeof(name), "cpu%u", ctx->cpu);
677 	ctx_dir = debugfs_create_dir(name, hctx->debugfs_dir);
678 
679 	debugfs_create_files(ctx_dir, ctx, blk_mq_debugfs_ctx_attrs);
680 }
681 
682 void blk_mq_debugfs_register_hctx(struct request_queue *q,
683 				  struct blk_mq_hw_ctx *hctx)
684 {
685 	struct blk_mq_ctx *ctx;
686 	char name[20];
687 	int i;
688 
689 	if (!q->debugfs_dir)
690 		return;
691 
692 	snprintf(name, sizeof(name), "hctx%u", hctx->queue_num);
693 	hctx->debugfs_dir = debugfs_create_dir(name, q->debugfs_dir);
694 
695 	debugfs_create_files(hctx->debugfs_dir, hctx, blk_mq_debugfs_hctx_attrs);
696 
697 	hctx_for_each_ctx(hctx, ctx, i)
698 		blk_mq_debugfs_register_ctx(hctx, ctx);
699 }
700 
701 void blk_mq_debugfs_unregister_hctx(struct blk_mq_hw_ctx *hctx)
702 {
703 	if (!hctx->queue->debugfs_dir)
704 		return;
705 	debugfs_remove_recursive(hctx->debugfs_dir);
706 	hctx->sched_debugfs_dir = NULL;
707 	hctx->debugfs_dir = NULL;
708 }
709 
710 void blk_mq_debugfs_register_hctxs(struct request_queue *q)
711 {
712 	struct blk_mq_hw_ctx *hctx;
713 	unsigned long i;
714 
715 	queue_for_each_hw_ctx(q, hctx, i)
716 		blk_mq_debugfs_register_hctx(q, hctx);
717 }
718 
719 void blk_mq_debugfs_unregister_hctxs(struct request_queue *q)
720 {
721 	struct blk_mq_hw_ctx *hctx;
722 	unsigned long i;
723 
724 	queue_for_each_hw_ctx(q, hctx, i)
725 		blk_mq_debugfs_unregister_hctx(hctx);
726 }
727 
728 void blk_mq_debugfs_register_sched(struct request_queue *q)
729 {
730 	struct elevator_type *e = q->elevator->type;
731 
732 	lockdep_assert_held(&q->debugfs_mutex);
733 
734 	/*
735 	 * If the parent directory has not been created yet, return, we will be
736 	 * called again later on and the directory/files will be created then.
737 	 */
738 	if (!q->debugfs_dir)
739 		return;
740 
741 	if (!e->queue_debugfs_attrs)
742 		return;
743 
744 	q->sched_debugfs_dir = debugfs_create_dir("sched", q->debugfs_dir);
745 
746 	debugfs_create_files(q->sched_debugfs_dir, q, e->queue_debugfs_attrs);
747 }
748 
749 void blk_mq_debugfs_unregister_sched(struct request_queue *q)
750 {
751 	lockdep_assert_held(&q->debugfs_mutex);
752 
753 	debugfs_remove_recursive(q->sched_debugfs_dir);
754 	q->sched_debugfs_dir = NULL;
755 }
756 
757 static const char *rq_qos_id_to_name(enum rq_qos_id id)
758 {
759 	switch (id) {
760 	case RQ_QOS_WBT:
761 		return "wbt";
762 	case RQ_QOS_LATENCY:
763 		return "latency";
764 	case RQ_QOS_COST:
765 		return "cost";
766 	}
767 	return "unknown";
768 }
769 
770 void blk_mq_debugfs_unregister_rqos(struct rq_qos *rqos)
771 {
772 	lockdep_assert_held(&rqos->disk->queue->debugfs_mutex);
773 
774 	if (!rqos->disk->queue->debugfs_dir)
775 		return;
776 	debugfs_remove_recursive(rqos->debugfs_dir);
777 	rqos->debugfs_dir = NULL;
778 }
779 
780 void blk_mq_debugfs_register_rqos(struct rq_qos *rqos)
781 {
782 	struct request_queue *q = rqos->disk->queue;
783 	const char *dir_name = rq_qos_id_to_name(rqos->id);
784 
785 	lockdep_assert_held(&q->debugfs_mutex);
786 
787 	if (rqos->debugfs_dir || !rqos->ops->debugfs_attrs)
788 		return;
789 
790 	if (!q->rqos_debugfs_dir)
791 		q->rqos_debugfs_dir = debugfs_create_dir("rqos",
792 							 q->debugfs_dir);
793 
794 	rqos->debugfs_dir = debugfs_create_dir(dir_name, q->rqos_debugfs_dir);
795 	debugfs_create_files(rqos->debugfs_dir, rqos, rqos->ops->debugfs_attrs);
796 }
797 
798 void blk_mq_debugfs_register_sched_hctx(struct request_queue *q,
799 					struct blk_mq_hw_ctx *hctx)
800 {
801 	struct elevator_type *e = q->elevator->type;
802 
803 	lockdep_assert_held(&q->debugfs_mutex);
804 
805 	/*
806 	 * If the parent debugfs directory has not been created yet, return;
807 	 * We will be called again later on with appropriate parent debugfs
808 	 * directory from blk_register_queue()
809 	 */
810 	if (!hctx->debugfs_dir)
811 		return;
812 
813 	if (!e->hctx_debugfs_attrs)
814 		return;
815 
816 	hctx->sched_debugfs_dir = debugfs_create_dir("sched",
817 						     hctx->debugfs_dir);
818 	debugfs_create_files(hctx->sched_debugfs_dir, hctx,
819 			     e->hctx_debugfs_attrs);
820 }
821 
822 void blk_mq_debugfs_unregister_sched_hctx(struct blk_mq_hw_ctx *hctx)
823 {
824 	lockdep_assert_held(&hctx->queue->debugfs_mutex);
825 
826 	if (!hctx->queue->debugfs_dir)
827 		return;
828 	debugfs_remove_recursive(hctx->sched_debugfs_dir);
829 	hctx->sched_debugfs_dir = NULL;
830 }
831