blob: 8ea96d83d599b97a3f336bb67c4b784d2d00d420 [file] [log] [blame]
Christoph Hellwig8c165672019-04-30 14:42:39 -04001// SPDX-License-Identifier: GPL-2.0
Omar Sandoval07e4fea2017-01-25 08:06:40 -08002/*
3 * Copyright (C) 2017 Facebook
Omar Sandoval07e4fea2017-01-25 08:06:40 -08004 */
5
6#include <linux/kernel.h>
7#include <linux/blkdev.h>
8#include <linux/debugfs.h>
9
10#include <linux/blk-mq.h>
Omar Sandoval18fbda92017-01-31 14:53:20 -080011#include "blk.h"
Omar Sandoval07e4fea2017-01-25 08:06:40 -080012#include "blk-mq.h"
Omar Sandovald173a252017-05-04 00:31:30 -070013#include "blk-mq-debugfs.h"
Omar Sandovald96b37c2017-01-25 08:06:46 -080014#include "blk-mq-tag.h"
Ming Leicc566942018-12-17 09:46:00 +080015#include "blk-rq-qos.h"
Omar Sandoval07e4fea2017-01-25 08:06:40 -080016
Bart Van Assche1209cb72018-02-27 16:32:13 -080017static void print_stat(struct seq_file *m, struct blk_rq_stat *stat)
18{
19 if (stat->nr_samples) {
Pavel Begunkov315eb652019-06-14 14:39:26 +030020 seq_printf(m, "samples=%d, mean=%llu, min=%llu, max=%llu",
Bart Van Assche1209cb72018-02-27 16:32:13 -080021 stat->nr_samples, stat->mean, stat->min, stat->max);
22 } else {
23 seq_puts(m, "samples=0");
24 }
25}
26
27static int queue_poll_stat_show(void *data, struct seq_file *m)
28{
29 struct request_queue *q = data;
30 int bucket;
31
Chaitanya Kulkarni243d9f72019-06-19 15:01:50 -070032 for (bucket = 0; bucket < (BLK_MQ_POLL_STATS_BKTS / 2); bucket++) {
33 seq_printf(m, "read (%d Bytes): ", 1 << (9 + bucket));
34 print_stat(m, &q->poll_stat[2 * bucket]);
Bart Van Assche1209cb72018-02-27 16:32:13 -080035 seq_puts(m, "\n");
36
Chaitanya Kulkarni243d9f72019-06-19 15:01:50 -070037 seq_printf(m, "write (%d Bytes): ", 1 << (9 + bucket));
38 print_stat(m, &q->poll_stat[2 * bucket + 1]);
Bart Van Assche1209cb72018-02-27 16:32:13 -080039 seq_puts(m, "\n");
40 }
41 return 0;
42}
43
44static void *queue_requeue_list_start(struct seq_file *m, loff_t *pos)
45 __acquires(&q->requeue_lock)
46{
47 struct request_queue *q = m->private;
48
49 spin_lock_irq(&q->requeue_lock);
50 return seq_list_start(&q->requeue_list, *pos);
51}
52
53static void *queue_requeue_list_next(struct seq_file *m, void *v, loff_t *pos)
54{
55 struct request_queue *q = m->private;
56
57 return seq_list_next(v, &q->requeue_list, pos);
58}
59
60static void queue_requeue_list_stop(struct seq_file *m, void *v)
61 __releases(&q->requeue_lock)
62{
63 struct request_queue *q = m->private;
64
65 spin_unlock_irq(&q->requeue_lock);
66}
67
68static const struct seq_operations queue_requeue_list_seq_ops = {
69 .start = queue_requeue_list_start,
70 .next = queue_requeue_list_next,
71 .stop = queue_requeue_list_stop,
72 .show = blk_mq_debugfs_rq_show,
73};
74
Bart Van Assche91d68902017-04-10 16:13:15 -060075static int blk_flags_show(struct seq_file *m, const unsigned long flags,
76 const char *const *flag_name, int flag_name_count)
77{
78 bool sep = false;
79 int i;
80
81 for (i = 0; i < sizeof(flags) * BITS_PER_BYTE; i++) {
82 if (!(flags & BIT(i)))
83 continue;
84 if (sep)
Omar Sandovalbec03d62017-05-04 00:31:23 -070085 seq_puts(m, "|");
Bart Van Assche91d68902017-04-10 16:13:15 -060086 sep = true;
87 if (i < flag_name_count && flag_name[i])
88 seq_puts(m, flag_name[i]);
89 else
90 seq_printf(m, "%d", i);
91 }
Bart Van Assche91d68902017-04-10 16:13:15 -060092 return 0;
93}
94
Bart Van Asschecd84a622018-09-26 14:01:04 -070095static int queue_pm_only_show(void *data, struct seq_file *m)
96{
97 struct request_queue *q = data;
98
99 seq_printf(m, "%d\n", atomic_read(&q->pm_only));
100 return 0;
101}
102
Omar Sandoval1a435112017-05-04 00:31:24 -0700103#define QUEUE_FLAG_NAME(name) [QUEUE_FLAG_##name] = #name
Bart Van Assche91d68902017-04-10 16:13:15 -0600104static const char *const blk_queue_flag_name[] = {
Omar Sandoval1a435112017-05-04 00:31:24 -0700105 QUEUE_FLAG_NAME(STOPPED),
Omar Sandoval1a435112017-05-04 00:31:24 -0700106 QUEUE_FLAG_NAME(DYING),
Omar Sandoval1a435112017-05-04 00:31:24 -0700107 QUEUE_FLAG_NAME(NOMERGES),
108 QUEUE_FLAG_NAME(SAME_COMP),
109 QUEUE_FLAG_NAME(FAIL_IO),
Omar Sandoval1a435112017-05-04 00:31:24 -0700110 QUEUE_FLAG_NAME(NONROT),
111 QUEUE_FLAG_NAME(IO_STAT),
112 QUEUE_FLAG_NAME(DISCARD),
113 QUEUE_FLAG_NAME(NOXMERGES),
114 QUEUE_FLAG_NAME(ADD_RANDOM),
115 QUEUE_FLAG_NAME(SECERASE),
116 QUEUE_FLAG_NAME(SAME_FORCE),
117 QUEUE_FLAG_NAME(DEAD),
118 QUEUE_FLAG_NAME(INIT_DONE),
Christoph Hellwig1cb039f2020-09-24 08:51:38 +0200119 QUEUE_FLAG_NAME(STABLE_WRITES),
Omar Sandoval1a435112017-05-04 00:31:24 -0700120 QUEUE_FLAG_NAME(POLL),
121 QUEUE_FLAG_NAME(WC),
122 QUEUE_FLAG_NAME(FUA),
Omar Sandoval1a435112017-05-04 00:31:24 -0700123 QUEUE_FLAG_NAME(DAX),
124 QUEUE_FLAG_NAME(STATS),
125 QUEUE_FLAG_NAME(POLL_STATS),
126 QUEUE_FLAG_NAME(REGISTERED),
Bart Van Assche22d53822017-08-18 15:52:54 -0700127 QUEUE_FLAG_NAME(SCSI_PASSTHROUGH),
128 QUEUE_FLAG_NAME(QUIESCED),
Hou Taobfe373f2020-04-28 09:54:56 +0800129 QUEUE_FLAG_NAME(PCI_P2PDMA),
130 QUEUE_FLAG_NAME(ZONE_RESETALL),
131 QUEUE_FLAG_NAME(RQ_ALLOC_TIME),
Andres Freunddc304322020-12-28 11:27:18 -0800132 QUEUE_FLAG_NAME(NOWAIT),
Bart Van Assche91d68902017-04-10 16:13:15 -0600133};
Omar Sandoval1a435112017-05-04 00:31:24 -0700134#undef QUEUE_FLAG_NAME
Bart Van Assche91d68902017-04-10 16:13:15 -0600135
Omar Sandovalf57de232017-05-04 00:31:28 -0700136static int queue_state_show(void *data, struct seq_file *m)
Bart Van Assche91d68902017-04-10 16:13:15 -0600137{
Omar Sandovalf57de232017-05-04 00:31:28 -0700138 struct request_queue *q = data;
Bart Van Assche91d68902017-04-10 16:13:15 -0600139
140 blk_flags_show(m, q->queue_flags, blk_queue_flag_name,
141 ARRAY_SIZE(blk_queue_flag_name));
Bart Van Asschefd07dc82017-04-26 13:47:54 -0700142 seq_puts(m, "\n");
Bart Van Assche91d68902017-04-10 16:13:15 -0600143 return 0;
144}
145
Omar Sandovalf57de232017-05-04 00:31:28 -0700146static ssize_t queue_state_write(void *data, const char __user *buf,
147 size_t count, loff_t *ppos)
Bart Van Assche91d68902017-04-10 16:13:15 -0600148{
Omar Sandovalf57de232017-05-04 00:31:28 -0700149 struct request_queue *q = data;
Omar Sandoval71b90512017-05-04 00:31:26 -0700150 char opbuf[16] = { }, *op;
Bart Van Assche91d68902017-04-10 16:13:15 -0600151
Bart Van Assche18d4d7d2017-05-04 00:31:29 -0700152 /*
153 * The "state" attribute is removed after blk_cleanup_queue() has called
154 * blk_mq_free_queue(). Return if QUEUE_FLAG_DEAD has been set to avoid
155 * triggering a use-after-free.
156 */
157 if (blk_queue_dead(q))
158 return -ENOENT;
159
Omar Sandoval71b90512017-05-04 00:31:26 -0700160 if (count >= sizeof(opbuf)) {
Omar Sandovalc7e41452017-05-04 00:31:25 -0700161 pr_err("%s: operation too long\n", __func__);
162 goto inval;
163 }
164
Omar Sandoval71b90512017-05-04 00:31:26 -0700165 if (copy_from_user(opbuf, buf, count))
Bart Van Assche91d68902017-04-10 16:13:15 -0600166 return -EFAULT;
Omar Sandoval71b90512017-05-04 00:31:26 -0700167 op = strstrip(opbuf);
Bart Van Assche91d68902017-04-10 16:13:15 -0600168 if (strcmp(op, "run") == 0) {
169 blk_mq_run_hw_queues(q, true);
170 } else if (strcmp(op, "start") == 0) {
171 blk_mq_start_stopped_hw_queues(q, true);
Bart Van Asscheedea55a2017-06-01 08:55:13 -0700172 } else if (strcmp(op, "kick") == 0) {
173 blk_mq_kick_requeue_list(q);
Bart Van Assche91d68902017-04-10 16:13:15 -0600174 } else {
Omar Sandovalc7e41452017-05-04 00:31:25 -0700175 pr_err("%s: unsupported operation '%s'\n", __func__, op);
176inval:
Bart Van Asscheedea55a2017-06-01 08:55:13 -0700177 pr_err("%s: use 'run', 'start' or 'kick'\n", __func__);
Bart Van Assche91d68902017-04-10 16:13:15 -0600178 return -EINVAL;
179 }
Omar Sandovalc7e41452017-05-04 00:31:25 -0700180 return count;
Bart Van Assche91d68902017-04-10 16:13:15 -0600181}
182
Jens Axboef793dfd2017-06-26 08:15:27 -0600183static int queue_write_hint_show(void *data, struct seq_file *m)
184{
185 struct request_queue *q = data;
186 int i;
187
188 for (i = 0; i < BLK_MAX_WRITE_HINTS; i++)
189 seq_printf(m, "hint%d: %llu\n", i, q->write_hints[i]);
190
191 return 0;
192}
193
194static ssize_t queue_write_hint_store(void *data, const char __user *buf,
195 size_t count, loff_t *ppos)
196{
197 struct request_queue *q = data;
198 int i;
199
200 for (i = 0; i < BLK_MAX_WRITE_HINTS; i++)
201 q->write_hints[i] = 0;
202
203 return count;
204}
205
Bart Van Assche1209cb72018-02-27 16:32:13 -0800206static const struct blk_mq_debugfs_attr blk_mq_debugfs_queue_attrs[] = {
207 { "poll_stat", 0400, queue_poll_stat_show },
208 { "requeue_list", 0400, .seq_ops = &queue_requeue_list_seq_ops },
Bart Van Asschecd84a622018-09-26 14:01:04 -0700209 { "pm_only", 0600, queue_pm_only_show, NULL },
Bart Van Assche1209cb72018-02-27 16:32:13 -0800210 { "state", 0600, queue_state_show, queue_state_write },
211 { "write_hints", 0600, queue_write_hint_show, queue_write_hint_store },
Bart Van Assche18bc4232018-02-27 16:32:14 -0800212 { "zone_wlock", 0400, queue_zone_wlock_show, NULL },
Bart Van Assche1209cb72018-02-27 16:32:13 -0800213 { },
214};
Omar Sandoval34dbad52017-03-21 08:56:08 -0700215
Omar Sandoval1a435112017-05-04 00:31:24 -0700216#define HCTX_STATE_NAME(name) [BLK_MQ_S_##name] = #name
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700217static const char *const hctx_state_name[] = {
Omar Sandoval1a435112017-05-04 00:31:24 -0700218 HCTX_STATE_NAME(STOPPED),
219 HCTX_STATE_NAME(TAG_ACTIVE),
220 HCTX_STATE_NAME(SCHED_RESTART),
Ming Leibf0beec2020-05-29 15:53:15 +0200221 HCTX_STATE_NAME(INACTIVE),
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700222};
Omar Sandoval1a435112017-05-04 00:31:24 -0700223#undef HCTX_STATE_NAME
224
Omar Sandovalf57de232017-05-04 00:31:28 -0700225static int hctx_state_show(void *data, struct seq_file *m)
Omar Sandoval9abb2ad2017-01-25 08:06:41 -0800226{
Omar Sandovalf57de232017-05-04 00:31:28 -0700227 struct blk_mq_hw_ctx *hctx = data;
Omar Sandoval9abb2ad2017-01-25 08:06:41 -0800228
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700229 blk_flags_show(m, hctx->state, hctx_state_name,
230 ARRAY_SIZE(hctx_state_name));
Bart Van Asschefd07dc82017-04-26 13:47:54 -0700231 seq_puts(m, "\n");
Omar Sandoval9abb2ad2017-01-25 08:06:41 -0800232 return 0;
233}
234
Omar Sandoval1a435112017-05-04 00:31:24 -0700235#define BLK_TAG_ALLOC_NAME(name) [BLK_TAG_ALLOC_##name] = #name
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700236static const char *const alloc_policy_name[] = {
Omar Sandoval1a435112017-05-04 00:31:24 -0700237 BLK_TAG_ALLOC_NAME(FIFO),
238 BLK_TAG_ALLOC_NAME(RR),
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700239};
Omar Sandoval1a435112017-05-04 00:31:24 -0700240#undef BLK_TAG_ALLOC_NAME
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700241
Omar Sandoval1a435112017-05-04 00:31:24 -0700242#define HCTX_FLAG_NAME(name) [ilog2(BLK_MQ_F_##name)] = #name
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700243static const char *const hctx_flag_name[] = {
Omar Sandoval1a435112017-05-04 00:31:24 -0700244 HCTX_FLAG_NAME(SHOULD_MERGE),
Ming Lei51db1c32020-08-19 23:20:19 +0800245 HCTX_FLAG_NAME(TAG_QUEUE_SHARED),
Omar Sandoval1a435112017-05-04 00:31:24 -0700246 HCTX_FLAG_NAME(BLOCKING),
247 HCTX_FLAG_NAME(NO_SCHED),
Ming Leibf0beec2020-05-29 15:53:15 +0200248 HCTX_FLAG_NAME(STACKING),
John Garry02f938e2021-01-08 16:55:37 +0800249 HCTX_FLAG_NAME(TAG_HCTX_SHARED),
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700250};
Omar Sandoval1a435112017-05-04 00:31:24 -0700251#undef HCTX_FLAG_NAME
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700252
Omar Sandovalf57de232017-05-04 00:31:28 -0700253static int hctx_flags_show(void *data, struct seq_file *m)
Omar Sandoval9abb2ad2017-01-25 08:06:41 -0800254{
Omar Sandovalf57de232017-05-04 00:31:28 -0700255 struct blk_mq_hw_ctx *hctx = data;
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700256 const int alloc_policy = BLK_MQ_FLAG_TO_ALLOC_POLICY(hctx->flags);
Omar Sandoval9abb2ad2017-01-25 08:06:41 -0800257
Bart Van Asschef5c0b0912017-03-30 11:21:27 -0700258 seq_puts(m, "alloc_policy=");
259 if (alloc_policy < ARRAY_SIZE(alloc_policy_name) &&
260 alloc_policy_name[alloc_policy])
261 seq_puts(m, alloc_policy_name[alloc_policy]);
262 else
263 seq_printf(m, "%d", alloc_policy);
264 seq_puts(m, " ");
265 blk_flags_show(m,
266 hctx->flags ^ BLK_ALLOC_POLICY_TO_MQ_FLAG(alloc_policy),
267 hctx_flag_name, ARRAY_SIZE(hctx_flag_name));
Bart Van Asschefd07dc82017-04-26 13:47:54 -0700268 seq_puts(m, "\n");
Omar Sandoval9abb2ad2017-01-25 08:06:41 -0800269 return 0;
270}
271
Omar Sandoval1a435112017-05-04 00:31:24 -0700272#define CMD_FLAG_NAME(name) [__REQ_##name] = #name
Bart Van Assche8658dca2017-04-26 13:47:55 -0700273static const char *const cmd_flag_name[] = {
Omar Sandoval1a435112017-05-04 00:31:24 -0700274 CMD_FLAG_NAME(FAILFAST_DEV),
275 CMD_FLAG_NAME(FAILFAST_TRANSPORT),
276 CMD_FLAG_NAME(FAILFAST_DRIVER),
277 CMD_FLAG_NAME(SYNC),
278 CMD_FLAG_NAME(META),
279 CMD_FLAG_NAME(PRIO),
280 CMD_FLAG_NAME(NOMERGE),
281 CMD_FLAG_NAME(IDLE),
282 CMD_FLAG_NAME(INTEGRITY),
283 CMD_FLAG_NAME(FUA),
284 CMD_FLAG_NAME(PREFLUSH),
285 CMD_FLAG_NAME(RAHEAD),
286 CMD_FLAG_NAME(BACKGROUND),
Bart Van Assche22d53822017-08-18 15:52:54 -0700287 CMD_FLAG_NAME(NOWAIT),
Jianchao Wang1c260102019-01-24 18:28:55 +0800288 CMD_FLAG_NAME(NOUNMAP),
289 CMD_FLAG_NAME(HIPRI),
Bart Van Assche8658dca2017-04-26 13:47:55 -0700290};
Omar Sandoval1a435112017-05-04 00:31:24 -0700291#undef CMD_FLAG_NAME
Bart Van Assche8658dca2017-04-26 13:47:55 -0700292
Omar Sandoval1a435112017-05-04 00:31:24 -0700293#define RQF_NAME(name) [ilog2((__force u32)RQF_##name)] = #name
Bart Van Assche8658dca2017-04-26 13:47:55 -0700294static const char *const rqf_name[] = {
Jens Axboe85ba3ef2018-01-12 14:47:57 -0700295 RQF_NAME(STARTED),
Omar Sandoval1a435112017-05-04 00:31:24 -0700296 RQF_NAME(SOFTBARRIER),
297 RQF_NAME(FLUSH_SEQ),
298 RQF_NAME(MIXED_MERGE),
299 RQF_NAME(MQ_INFLIGHT),
300 RQF_NAME(DONTPREP),
Omar Sandoval1a435112017-05-04 00:31:24 -0700301 RQF_NAME(FAILED),
302 RQF_NAME(QUIET),
303 RQF_NAME(ELVPRIV),
304 RQF_NAME(IO_STAT),
305 RQF_NAME(ALLOCED),
306 RQF_NAME(PM),
307 RQF_NAME(HASHED),
308 RQF_NAME(STATS),
309 RQF_NAME(SPECIAL_PAYLOAD),
Jens Axboe5d75d3f2018-01-10 11:30:08 -0700310 RQF_NAME(ZONE_WRITE_LOCKED),
Jens Axboe76a86f92018-01-10 11:30:56 -0700311 RQF_NAME(MQ_POLL_SLEPT),
Bart Van Assche8658dca2017-04-26 13:47:55 -0700312};
Omar Sandoval1a435112017-05-04 00:31:24 -0700313#undef RQF_NAME
Bart Van Assche8658dca2017-04-26 13:47:55 -0700314
Bart Van Asscheec6dcf62018-03-16 10:31:11 -0700315static const char *const blk_mq_rq_state_name_array[] = {
316 [MQ_RQ_IDLE] = "idle",
317 [MQ_RQ_IN_FLIGHT] = "in_flight",
318 [MQ_RQ_COMPLETE] = "complete",
319};
320
321static const char *blk_mq_rq_state_name(enum mq_rq_state rq_state)
322{
Dan Carpentera1e79182018-06-20 13:45:05 +0300323 if (WARN_ON_ONCE((unsigned int)rq_state >=
Bart Van Asscheec6dcf62018-03-16 10:31:11 -0700324 ARRAY_SIZE(blk_mq_rq_state_name_array)))
325 return "(?)";
326 return blk_mq_rq_state_name_array[rq_state];
327}
328
Omar Sandovaldaaadb32017-05-04 00:31:34 -0700329int __blk_mq_debugfs_rq_show(struct seq_file *m, struct request *rq)
Omar Sandoval950cd7e2017-01-25 08:06:42 -0800330{
Bart Van Assche2836ee42017-04-26 13:47:56 -0700331 const struct blk_mq_ops *const mq_ops = rq->q->mq_ops;
Chaitanya Kulkarnif9bc64a2019-06-13 07:14:21 -0700332 const unsigned int op = req_op(rq);
Chaitanya Kulkarni874c8932019-06-20 10:59:17 -0700333 const char *op_str = blk_op_str(op);
Omar Sandoval950cd7e2017-01-25 08:06:42 -0800334
Bart Van Assche8658dca2017-04-26 13:47:55 -0700335 seq_printf(m, "%p {.op=", rq);
Chaitanya Kulkarni874c8932019-06-20 10:59:17 -0700336 if (strcmp(op_str, "UNKNOWN") == 0)
Chaitanya Kulkarni3f6d3852019-06-19 15:01:49 -0700337 seq_printf(m, "%u", op);
Bart Van Assche8658dca2017-04-26 13:47:55 -0700338 else
Chaitanya Kulkarni874c8932019-06-20 10:59:17 -0700339 seq_printf(m, "%s", op_str);
Bart Van Assche8658dca2017-04-26 13:47:55 -0700340 seq_puts(m, ", .cmd_flags=");
341 blk_flags_show(m, rq->cmd_flags & ~REQ_OP_MASK, cmd_flag_name,
342 ARRAY_SIZE(cmd_flag_name));
343 seq_puts(m, ", .rq_flags=");
344 blk_flags_show(m, (__force unsigned int)rq->rq_flags, rqf_name,
345 ARRAY_SIZE(rqf_name));
Bart Van Asscheec6dcf62018-03-16 10:31:11 -0700346 seq_printf(m, ", .state=%s", blk_mq_rq_state_name(blk_mq_rq_state(rq)));
Bart Van Assche2836ee42017-04-26 13:47:56 -0700347 seq_printf(m, ", .tag=%d, .internal_tag=%d", rq->tag,
Bart Van Assche8658dca2017-04-26 13:47:55 -0700348 rq->internal_tag);
Bart Van Assche2836ee42017-04-26 13:47:56 -0700349 if (mq_ops->show_rq)
350 mq_ops->show_rq(m, rq);
351 seq_puts(m, "}\n");
Omar Sandoval950cd7e2017-01-25 08:06:42 -0800352 return 0;
353}
Omar Sandovaldaaadb32017-05-04 00:31:34 -0700354EXPORT_SYMBOL_GPL(__blk_mq_debugfs_rq_show);
355
356int blk_mq_debugfs_rq_show(struct seq_file *m, void *v)
357{
358 return __blk_mq_debugfs_rq_show(m, list_entry_rq(v));
359}
Omar Sandoval16b738f2017-05-04 00:31:33 -0700360EXPORT_SYMBOL_GPL(blk_mq_debugfs_rq_show);
Omar Sandoval950cd7e2017-01-25 08:06:42 -0800361
362static void *hctx_dispatch_start(struct seq_file *m, loff_t *pos)
Bart Van Asschef3bcb0e2017-02-01 10:20:56 -0800363 __acquires(&hctx->lock)
Omar Sandoval950cd7e2017-01-25 08:06:42 -0800364{
365 struct blk_mq_hw_ctx *hctx = m->private;
366
367 spin_lock(&hctx->lock);
368 return seq_list_start(&hctx->dispatch, *pos);
369}
370
371static void *hctx_dispatch_next(struct seq_file *m, void *v, loff_t *pos)
372{
373 struct blk_mq_hw_ctx *hctx = m->private;
374
375 return seq_list_next(v, &hctx->dispatch, pos);
376}
377
378static void hctx_dispatch_stop(struct seq_file *m, void *v)
Bart Van Asschef3bcb0e2017-02-01 10:20:56 -0800379 __releases(&hctx->lock)
Omar Sandoval950cd7e2017-01-25 08:06:42 -0800380{
381 struct blk_mq_hw_ctx *hctx = m->private;
382
383 spin_unlock(&hctx->lock);
384}
385
386static const struct seq_operations hctx_dispatch_seq_ops = {
387 .start = hctx_dispatch_start,
388 .next = hctx_dispatch_next,
389 .stop = hctx_dispatch_stop,
390 .show = blk_mq_debugfs_rq_show,
391};
392
Bart Van Assche2720bab2017-06-01 08:55:12 -0700393struct show_busy_params {
394 struct seq_file *m;
395 struct blk_mq_hw_ctx *hctx;
396};
397
398/*
399 * Note: the state of a request may change while this function is in progress,
Jens Axboe7baa8572018-11-08 10:24:07 -0700400 * e.g. due to a concurrent blk_mq_finish_request() call. Returns true to
401 * keep iterating requests.
Bart Van Assche2720bab2017-06-01 08:55:12 -0700402 */
Jens Axboe7baa8572018-11-08 10:24:07 -0700403static bool hctx_show_busy_rq(struct request *rq, void *data, bool reserved)
Bart Van Assche2720bab2017-06-01 08:55:12 -0700404{
405 const struct show_busy_params *params = data;
406
Jens Axboeea4f9952018-10-29 15:06:13 -0600407 if (rq->mq_hctx == params->hctx)
Hou Taob5fc1e82020-04-27 21:12:50 +0800408 __blk_mq_debugfs_rq_show(params->m, rq);
Jens Axboe7baa8572018-11-08 10:24:07 -0700409
410 return true;
Bart Van Assche2720bab2017-06-01 08:55:12 -0700411}
412
413static int hctx_busy_show(void *data, struct seq_file *m)
414{
415 struct blk_mq_hw_ctx *hctx = data;
416 struct show_busy_params params = { .m = m, .hctx = hctx };
417
418 blk_mq_tagset_busy_iter(hctx->queue->tag_set, hctx_show_busy_rq,
419 &params);
420
421 return 0;
422}
423
Ming Lei346fc102018-12-17 18:42:48 +0800424static const char *const hctx_types[] = {
425 [HCTX_TYPE_DEFAULT] = "default",
426 [HCTX_TYPE_READ] = "read",
427 [HCTX_TYPE_POLL] = "poll",
428};
429
430static int hctx_type_show(void *data, struct seq_file *m)
431{
432 struct blk_mq_hw_ctx *hctx = data;
433
434 BUILD_BUG_ON(ARRAY_SIZE(hctx_types) != HCTX_MAX_TYPES);
435 seq_printf(m, "%s\n", hctx_types[hctx->type]);
436 return 0;
437}
438
Omar Sandovalf57de232017-05-04 00:31:28 -0700439static int hctx_ctx_map_show(void *data, struct seq_file *m)
Omar Sandoval950cd7e2017-01-25 08:06:42 -0800440{
Omar Sandovalf57de232017-05-04 00:31:28 -0700441 struct blk_mq_hw_ctx *hctx = data;
Omar Sandoval0bfa5282017-01-25 08:06:45 -0800442
443 sbitmap_bitmap_show(&hctx->ctx_map, m);
444 return 0;
445}
446
Omar Sandovald96b37c2017-01-25 08:06:46 -0800447static void blk_mq_debugfs_tags_show(struct seq_file *m,
448 struct blk_mq_tags *tags)
449{
450 seq_printf(m, "nr_tags=%u\n", tags->nr_tags);
451 seq_printf(m, "nr_reserved_tags=%u\n", tags->nr_reserved_tags);
452 seq_printf(m, "active_queues=%d\n",
453 atomic_read(&tags->active_queues));
454
455 seq_puts(m, "\nbitmap_tags:\n");
John Garry222a5ae2020-08-19 23:20:23 +0800456 sbitmap_queue_show(tags->bitmap_tags, m);
Omar Sandovald96b37c2017-01-25 08:06:46 -0800457
458 if (tags->nr_reserved_tags) {
459 seq_puts(m, "\nbreserved_tags:\n");
John Garry222a5ae2020-08-19 23:20:23 +0800460 sbitmap_queue_show(tags->breserved_tags, m);
Omar Sandovald96b37c2017-01-25 08:06:46 -0800461 }
462}
463
Omar Sandovalf57de232017-05-04 00:31:28 -0700464static int hctx_tags_show(void *data, struct seq_file *m)
Omar Sandovald96b37c2017-01-25 08:06:46 -0800465{
Omar Sandovalf57de232017-05-04 00:31:28 -0700466 struct blk_mq_hw_ctx *hctx = data;
Omar Sandovald96b37c2017-01-25 08:06:46 -0800467 struct request_queue *q = hctx->queue;
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800468 int res;
Omar Sandovald96b37c2017-01-25 08:06:46 -0800469
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800470 res = mutex_lock_interruptible(&q->sysfs_lock);
471 if (res)
472 goto out;
Omar Sandovald96b37c2017-01-25 08:06:46 -0800473 if (hctx->tags)
474 blk_mq_debugfs_tags_show(m, hctx->tags);
475 mutex_unlock(&q->sysfs_lock);
476
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800477out:
478 return res;
Omar Sandovald96b37c2017-01-25 08:06:46 -0800479}
480
Omar Sandovalf57de232017-05-04 00:31:28 -0700481static int hctx_tags_bitmap_show(void *data, struct seq_file *m)
Omar Sandovald96b37c2017-01-25 08:06:46 -0800482{
Omar Sandovalf57de232017-05-04 00:31:28 -0700483 struct blk_mq_hw_ctx *hctx = data;
Omar Sandovald7e36212017-01-25 08:06:47 -0800484 struct request_queue *q = hctx->queue;
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800485 int res;
Omar Sandovald7e36212017-01-25 08:06:47 -0800486
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800487 res = mutex_lock_interruptible(&q->sysfs_lock);
488 if (res)
489 goto out;
Omar Sandovald7e36212017-01-25 08:06:47 -0800490 if (hctx->tags)
John Garry222a5ae2020-08-19 23:20:23 +0800491 sbitmap_bitmap_show(&hctx->tags->bitmap_tags->sb, m);
Omar Sandovald7e36212017-01-25 08:06:47 -0800492 mutex_unlock(&q->sysfs_lock);
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800493
494out:
495 return res;
Omar Sandovald7e36212017-01-25 08:06:47 -0800496}
497
Omar Sandovalf57de232017-05-04 00:31:28 -0700498static int hctx_sched_tags_show(void *data, struct seq_file *m)
Omar Sandovald7e36212017-01-25 08:06:47 -0800499{
Omar Sandovalf57de232017-05-04 00:31:28 -0700500 struct blk_mq_hw_ctx *hctx = data;
Omar Sandovald96b37c2017-01-25 08:06:46 -0800501 struct request_queue *q = hctx->queue;
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800502 int res;
Omar Sandovald96b37c2017-01-25 08:06:46 -0800503
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800504 res = mutex_lock_interruptible(&q->sysfs_lock);
505 if (res)
506 goto out;
Omar Sandovald96b37c2017-01-25 08:06:46 -0800507 if (hctx->sched_tags)
508 blk_mq_debugfs_tags_show(m, hctx->sched_tags);
509 mutex_unlock(&q->sysfs_lock);
510
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800511out:
512 return res;
Omar Sandovald96b37c2017-01-25 08:06:46 -0800513}
514
Omar Sandovalf57de232017-05-04 00:31:28 -0700515static int hctx_sched_tags_bitmap_show(void *data, struct seq_file *m)
Omar Sandovald96b37c2017-01-25 08:06:46 -0800516{
Omar Sandovalf57de232017-05-04 00:31:28 -0700517 struct blk_mq_hw_ctx *hctx = data;
Omar Sandovald7e36212017-01-25 08:06:47 -0800518 struct request_queue *q = hctx->queue;
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800519 int res;
Omar Sandovald7e36212017-01-25 08:06:47 -0800520
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800521 res = mutex_lock_interruptible(&q->sysfs_lock);
522 if (res)
523 goto out;
Omar Sandovald7e36212017-01-25 08:06:47 -0800524 if (hctx->sched_tags)
John Garry222a5ae2020-08-19 23:20:23 +0800525 sbitmap_bitmap_show(&hctx->sched_tags->bitmap_tags->sb, m);
Omar Sandovald7e36212017-01-25 08:06:47 -0800526 mutex_unlock(&q->sysfs_lock);
Bart Van Assche8c0f14e2017-02-01 10:20:58 -0800527
528out:
529 return res;
Omar Sandovald7e36212017-01-25 08:06:47 -0800530}
531
Omar Sandovalf57de232017-05-04 00:31:28 -0700532static int hctx_io_poll_show(void *data, struct seq_file *m)
Omar Sandovald7e36212017-01-25 08:06:47 -0800533{
Omar Sandovalf57de232017-05-04 00:31:28 -0700534 struct blk_mq_hw_ctx *hctx = data;
Omar Sandovalbe215472017-01-25 08:06:48 -0800535
536 seq_printf(m, "considered=%lu\n", hctx->poll_considered);
537 seq_printf(m, "invoked=%lu\n", hctx->poll_invoked);
538 seq_printf(m, "success=%lu\n", hctx->poll_success);
539 return 0;
540}
541
Omar Sandovalf57de232017-05-04 00:31:28 -0700542static ssize_t hctx_io_poll_write(void *data, const char __user *buf,
Omar Sandovalbe215472017-01-25 08:06:48 -0800543 size_t count, loff_t *ppos)
544{
Omar Sandovalf57de232017-05-04 00:31:28 -0700545 struct blk_mq_hw_ctx *hctx = data;
Omar Sandovalbe215472017-01-25 08:06:48 -0800546
547 hctx->poll_considered = hctx->poll_invoked = hctx->poll_success = 0;
548 return count;
549}
550
Omar Sandovalf57de232017-05-04 00:31:28 -0700551static int hctx_dispatched_show(void *data, struct seq_file *m)
Omar Sandovalbe215472017-01-25 08:06:48 -0800552{
Omar Sandovalf57de232017-05-04 00:31:28 -0700553 struct blk_mq_hw_ctx *hctx = data;
Omar Sandovalbe215472017-01-25 08:06:48 -0800554 int i;
555
556 seq_printf(m, "%8u\t%lu\n", 0U, hctx->dispatched[0]);
557
558 for (i = 1; i < BLK_MQ_MAX_DISPATCH_ORDER - 1; i++) {
559 unsigned int d = 1U << (i - 1);
560
561 seq_printf(m, "%8u\t%lu\n", d, hctx->dispatched[i]);
562 }
563
564 seq_printf(m, "%8u+\t%lu\n", 1U << (i - 1), hctx->dispatched[i]);
565 return 0;
566}
567
Omar Sandovalf57de232017-05-04 00:31:28 -0700568static ssize_t hctx_dispatched_write(void *data, const char __user *buf,
Omar Sandovalbe215472017-01-25 08:06:48 -0800569 size_t count, loff_t *ppos)
570{
Omar Sandovalf57de232017-05-04 00:31:28 -0700571 struct blk_mq_hw_ctx *hctx = data;
Omar Sandovalbe215472017-01-25 08:06:48 -0800572 int i;
573
574 for (i = 0; i < BLK_MQ_MAX_DISPATCH_ORDER; i++)
575 hctx->dispatched[i] = 0;
576 return count;
577}
578
Omar Sandovalf57de232017-05-04 00:31:28 -0700579static int hctx_queued_show(void *data, struct seq_file *m)
Omar Sandoval4a46f052017-01-25 08:06:49 -0800580{
Omar Sandovalf57de232017-05-04 00:31:28 -0700581 struct blk_mq_hw_ctx *hctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800582
583 seq_printf(m, "%lu\n", hctx->queued);
584 return 0;
585}
586
Omar Sandovalf57de232017-05-04 00:31:28 -0700587static ssize_t hctx_queued_write(void *data, const char __user *buf,
Omar Sandoval4a46f052017-01-25 08:06:49 -0800588 size_t count, loff_t *ppos)
589{
Omar Sandovalf57de232017-05-04 00:31:28 -0700590 struct blk_mq_hw_ctx *hctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800591
592 hctx->queued = 0;
593 return count;
594}
595
Omar Sandovalf57de232017-05-04 00:31:28 -0700596static int hctx_run_show(void *data, struct seq_file *m)
Omar Sandoval4a46f052017-01-25 08:06:49 -0800597{
Omar Sandovalf57de232017-05-04 00:31:28 -0700598 struct blk_mq_hw_ctx *hctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800599
600 seq_printf(m, "%lu\n", hctx->run);
601 return 0;
602}
603
Omar Sandovalf57de232017-05-04 00:31:28 -0700604static ssize_t hctx_run_write(void *data, const char __user *buf, size_t count,
605 loff_t *ppos)
Omar Sandoval4a46f052017-01-25 08:06:49 -0800606{
Omar Sandovalf57de232017-05-04 00:31:28 -0700607 struct blk_mq_hw_ctx *hctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800608
609 hctx->run = 0;
610 return count;
611}
612
Omar Sandovalf57de232017-05-04 00:31:28 -0700613static int hctx_active_show(void *data, struct seq_file *m)
Omar Sandoval4a46f052017-01-25 08:06:49 -0800614{
Omar Sandovalf57de232017-05-04 00:31:28 -0700615 struct blk_mq_hw_ctx *hctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800616
617 seq_printf(m, "%d\n", atomic_read(&hctx->nr_active));
618 return 0;
619}
620
Ming Lei6e7687172018-07-03 09:03:16 -0600621static int hctx_dispatch_busy_show(void *data, struct seq_file *m)
622{
623 struct blk_mq_hw_ctx *hctx = data;
624
625 seq_printf(m, "%u\n", hctx->dispatch_busy);
626 return 0;
627}
628
Ming Leic16d6b52018-12-17 08:44:05 -0700629#define CTX_RQ_SEQ_OPS(name, type) \
630static void *ctx_##name##_rq_list_start(struct seq_file *m, loff_t *pos) \
631 __acquires(&ctx->lock) \
632{ \
633 struct blk_mq_ctx *ctx = m->private; \
634 \
635 spin_lock(&ctx->lock); \
636 return seq_list_start(&ctx->rq_lists[type], *pos); \
637} \
638 \
639static void *ctx_##name##_rq_list_next(struct seq_file *m, void *v, \
640 loff_t *pos) \
641{ \
642 struct blk_mq_ctx *ctx = m->private; \
643 \
644 return seq_list_next(v, &ctx->rq_lists[type], pos); \
645} \
646 \
647static void ctx_##name##_rq_list_stop(struct seq_file *m, void *v) \
648 __releases(&ctx->lock) \
649{ \
650 struct blk_mq_ctx *ctx = m->private; \
651 \
652 spin_unlock(&ctx->lock); \
653} \
654 \
655static const struct seq_operations ctx_##name##_rq_list_seq_ops = { \
656 .start = ctx_##name##_rq_list_start, \
657 .next = ctx_##name##_rq_list_next, \
658 .stop = ctx_##name##_rq_list_stop, \
659 .show = blk_mq_debugfs_rq_show, \
Omar Sandoval950cd7e2017-01-25 08:06:42 -0800660}
661
Ming Leic16d6b52018-12-17 08:44:05 -0700662CTX_RQ_SEQ_OPS(default, HCTX_TYPE_DEFAULT);
663CTX_RQ_SEQ_OPS(read, HCTX_TYPE_READ);
664CTX_RQ_SEQ_OPS(poll, HCTX_TYPE_POLL);
Omar Sandoval950cd7e2017-01-25 08:06:42 -0800665
Omar Sandovalf57de232017-05-04 00:31:28 -0700666static int ctx_dispatched_show(void *data, struct seq_file *m)
Omar Sandoval950cd7e2017-01-25 08:06:42 -0800667{
Omar Sandovalf57de232017-05-04 00:31:28 -0700668 struct blk_mq_ctx *ctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800669
670 seq_printf(m, "%lu %lu\n", ctx->rq_dispatched[1], ctx->rq_dispatched[0]);
671 return 0;
672}
673
Omar Sandovalf57de232017-05-04 00:31:28 -0700674static ssize_t ctx_dispatched_write(void *data, const char __user *buf,
Omar Sandoval4a46f052017-01-25 08:06:49 -0800675 size_t count, loff_t *ppos)
676{
Omar Sandovalf57de232017-05-04 00:31:28 -0700677 struct blk_mq_ctx *ctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800678
679 ctx->rq_dispatched[0] = ctx->rq_dispatched[1] = 0;
680 return count;
681}
682
Omar Sandovalf57de232017-05-04 00:31:28 -0700683static int ctx_merged_show(void *data, struct seq_file *m)
Omar Sandoval4a46f052017-01-25 08:06:49 -0800684{
Omar Sandovalf57de232017-05-04 00:31:28 -0700685 struct blk_mq_ctx *ctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800686
687 seq_printf(m, "%lu\n", ctx->rq_merged);
688 return 0;
689}
690
Omar Sandovalf57de232017-05-04 00:31:28 -0700691static ssize_t ctx_merged_write(void *data, const char __user *buf,
692 size_t count, loff_t *ppos)
Omar Sandoval4a46f052017-01-25 08:06:49 -0800693{
Omar Sandovalf57de232017-05-04 00:31:28 -0700694 struct blk_mq_ctx *ctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800695
696 ctx->rq_merged = 0;
697 return count;
698}
699
Omar Sandovalf57de232017-05-04 00:31:28 -0700700static int ctx_completed_show(void *data, struct seq_file *m)
Omar Sandoval4a46f052017-01-25 08:06:49 -0800701{
Omar Sandovalf57de232017-05-04 00:31:28 -0700702 struct blk_mq_ctx *ctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800703
704 seq_printf(m, "%lu %lu\n", ctx->rq_completed[1], ctx->rq_completed[0]);
705 return 0;
706}
707
Omar Sandovalf57de232017-05-04 00:31:28 -0700708static ssize_t ctx_completed_write(void *data, const char __user *buf,
Omar Sandoval4a46f052017-01-25 08:06:49 -0800709 size_t count, loff_t *ppos)
710{
Omar Sandovalf57de232017-05-04 00:31:28 -0700711 struct blk_mq_ctx *ctx = data;
Omar Sandoval4a46f052017-01-25 08:06:49 -0800712
713 ctx->rq_completed[0] = ctx->rq_completed[1] = 0;
714 return count;
715}
716
Omar Sandovalf57de232017-05-04 00:31:28 -0700717static int blk_mq_debugfs_show(struct seq_file *m, void *v)
718{
719 const struct blk_mq_debugfs_attr *attr = m->private;
720 void *data = d_inode(m->file->f_path.dentry->d_parent)->i_private;
721
722 return attr->show(data, m);
723}
724
725static ssize_t blk_mq_debugfs_write(struct file *file, const char __user *buf,
726 size_t count, loff_t *ppos)
727{
728 struct seq_file *m = file->private_data;
729 const struct blk_mq_debugfs_attr *attr = m->private;
730 void *data = d_inode(file->f_path.dentry->d_parent)->i_private;
731
Eryu Guan6b136a22018-01-24 01:20:00 +0800732 /*
733 * Attributes that only implement .seq_ops are read-only and 'attr' is
734 * the same with 'data' in this case.
735 */
736 if (attr == data || !attr->write)
Omar Sandovalf57de232017-05-04 00:31:28 -0700737 return -EPERM;
738
739 return attr->write(data, buf, count, ppos);
740}
741
742static int blk_mq_debugfs_open(struct inode *inode, struct file *file)
743{
744 const struct blk_mq_debugfs_attr *attr = inode->i_private;
745 void *data = d_inode(file->f_path.dentry->d_parent)->i_private;
746 struct seq_file *m;
747 int ret;
748
749 if (attr->seq_ops) {
750 ret = seq_open(file, attr->seq_ops);
751 if (!ret) {
752 m = file->private_data;
753 m->private = data;
754 }
755 return ret;
756 }
757
758 if (WARN_ON_ONCE(!attr->show))
759 return -EPERM;
760
761 return single_open(file, blk_mq_debugfs_show, inode->i_private);
762}
763
764static int blk_mq_debugfs_release(struct inode *inode, struct file *file)
765{
766 const struct blk_mq_debugfs_attr *attr = inode->i_private;
767
768 if (attr->show)
769 return single_release(inode, file);
Chaitanya Kulkarniee1e0352019-06-19 15:01:48 -0700770
771 return seq_release(inode, file);
Omar Sandovalf57de232017-05-04 00:31:28 -0700772}
773
Bart Van Asschef8465932017-08-17 16:23:04 -0700774static const struct file_operations blk_mq_debugfs_fops = {
Omar Sandovalf57de232017-05-04 00:31:28 -0700775 .open = blk_mq_debugfs_open,
Omar Sandoval4a46f052017-01-25 08:06:49 -0800776 .read = seq_read,
Omar Sandovalf57de232017-05-04 00:31:28 -0700777 .write = blk_mq_debugfs_write,
Omar Sandoval4a46f052017-01-25 08:06:49 -0800778 .llseek = seq_lseek,
Omar Sandovalf57de232017-05-04 00:31:28 -0700779 .release = blk_mq_debugfs_release,
Omar Sandoval4a46f052017-01-25 08:06:49 -0800780};
781
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800782static const struct blk_mq_debugfs_attr blk_mq_debugfs_hctx_attrs[] = {
Omar Sandovalf57de232017-05-04 00:31:28 -0700783 {"state", 0400, hctx_state_show},
784 {"flags", 0400, hctx_flags_show},
785 {"dispatch", 0400, .seq_ops = &hctx_dispatch_seq_ops},
Bart Van Assche2720bab2017-06-01 08:55:12 -0700786 {"busy", 0400, hctx_busy_show},
Omar Sandovalf57de232017-05-04 00:31:28 -0700787 {"ctx_map", 0400, hctx_ctx_map_show},
788 {"tags", 0400, hctx_tags_show},
789 {"tags_bitmap", 0400, hctx_tags_bitmap_show},
790 {"sched_tags", 0400, hctx_sched_tags_show},
791 {"sched_tags_bitmap", 0400, hctx_sched_tags_bitmap_show},
792 {"io_poll", 0600, hctx_io_poll_show, hctx_io_poll_write},
793 {"dispatched", 0600, hctx_dispatched_show, hctx_dispatched_write},
794 {"queued", 0600, hctx_queued_show, hctx_queued_write},
795 {"run", 0600, hctx_run_show, hctx_run_write},
796 {"active", 0400, hctx_active_show},
Ming Lei6e7687172018-07-03 09:03:16 -0600797 {"dispatch_busy", 0400, hctx_dispatch_busy_show},
Ming Lei346fc102018-12-17 18:42:48 +0800798 {"type", 0400, hctx_type_show},
Bart Van Assche72f2f8f2017-02-01 10:20:59 -0800799 {},
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800800};
801
802static const struct blk_mq_debugfs_attr blk_mq_debugfs_ctx_attrs[] = {
Ming Leic16d6b52018-12-17 08:44:05 -0700803 {"default_rq_list", 0400, .seq_ops = &ctx_default_rq_list_seq_ops},
804 {"read_rq_list", 0400, .seq_ops = &ctx_read_rq_list_seq_ops},
805 {"poll_rq_list", 0400, .seq_ops = &ctx_poll_rq_list_seq_ops},
Omar Sandovalf57de232017-05-04 00:31:28 -0700806 {"dispatched", 0600, ctx_dispatched_show, ctx_dispatched_write},
807 {"merged", 0600, ctx_merged_show, ctx_merged_write},
808 {"completed", 0600, ctx_completed_show, ctx_completed_write},
Bart Van Assche72f2f8f2017-02-01 10:20:59 -0800809 {},
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800810};
811
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200812static void debugfs_create_files(struct dentry *parent, void *data,
Omar Sandovalf57de232017-05-04 00:31:28 -0700813 const struct blk_mq_debugfs_attr *attr)
Bart Van Assche72f2f8f2017-02-01 10:20:59 -0800814{
Greg Kroah-Hartman36991ca2019-01-23 14:48:54 +0100815 if (IS_ERR_OR_NULL(parent))
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200816 return;
Greg Kroah-Hartman36991ca2019-01-23 14:48:54 +0100817
Omar Sandovalf57de232017-05-04 00:31:28 -0700818 d_inode(parent)->i_private = data;
819
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200820 for (; attr->name; attr++)
821 debugfs_create_file(attr->name, attr->mode, parent,
822 (void *)attr, &blk_mq_debugfs_fops);
Bart Van Assche72f2f8f2017-02-01 10:20:59 -0800823}
824
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200825void blk_mq_debugfs_register(struct request_queue *q)
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600826{
827 struct blk_mq_hw_ctx *hctx;
828 int i;
829
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200830 debugfs_create_files(q->debugfs_dir, q, blk_mq_debugfs_queue_attrs);
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600831
832 /*
Omar Sandoval70e62f42017-10-03 14:57:16 -0700833 * blk_mq_init_sched() attempted to do this already, but q->debugfs_dir
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600834 * didn't exist yet (because we don't know what to name the directory
835 * until the queue is registered to a gendisk).
836 */
Omar Sandoval70e62f42017-10-03 14:57:16 -0700837 if (q->elevator && !q->sched_debugfs_dir)
838 blk_mq_debugfs_register_sched(q);
839
840 /* Similarly, blk_mq_init_hctx() couldn't do this previously. */
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600841 queue_for_each_hw_ctx(q, hctx, i) {
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200842 if (!hctx->debugfs_dir)
843 blk_mq_debugfs_register_hctx(q, hctx);
844 if (q->elevator && !hctx->sched_debugfs_dir)
845 blk_mq_debugfs_register_sched_hctx(q, hctx);
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600846 }
847
Ming Leicc566942018-12-17 09:46:00 +0800848 if (q->rq_qos) {
849 struct rq_qos *rqos = q->rq_qos;
850
851 while (rqos) {
852 blk_mq_debugfs_register_rqos(rqos);
853 rqos = rqos->next;
854 }
855 }
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600856}
857
858void blk_mq_debugfs_unregister(struct request_queue *q)
859{
Omar Sandovald332ce02017-05-04 08:24:40 -0600860 q->sched_debugfs_dir = NULL;
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600861}
862
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200863static void blk_mq_debugfs_register_ctx(struct blk_mq_hw_ctx *hctx,
864 struct blk_mq_ctx *ctx)
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800865{
866 struct dentry *ctx_dir;
867 char name[20];
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800868
869 snprintf(name, sizeof(name), "cpu%u", ctx->cpu);
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600870 ctx_dir = debugfs_create_dir(name, hctx->debugfs_dir);
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800871
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200872 debugfs_create_files(ctx_dir, ctx, blk_mq_debugfs_ctx_attrs);
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800873}
874
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200875void blk_mq_debugfs_register_hctx(struct request_queue *q,
876 struct blk_mq_hw_ctx *hctx)
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800877{
878 struct blk_mq_ctx *ctx;
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800879 char name[20];
880 int i;
881
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600882 snprintf(name, sizeof(name), "hctx%u", hctx->queue_num);
883 hctx->debugfs_dir = debugfs_create_dir(name, q->debugfs_dir);
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600884
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200885 debugfs_create_files(hctx->debugfs_dir, hctx, blk_mq_debugfs_hctx_attrs);
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800886
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200887 hctx_for_each_ctx(hctx, ctx, i)
888 blk_mq_debugfs_register_ctx(hctx, ctx);
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800889}
890
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600891void blk_mq_debugfs_unregister_hctx(struct blk_mq_hw_ctx *hctx)
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800892{
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600893 debugfs_remove_recursive(hctx->debugfs_dir);
Omar Sandovald332ce02017-05-04 08:24:40 -0600894 hctx->sched_debugfs_dir = NULL;
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600895 hctx->debugfs_dir = NULL;
896}
897
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200898void blk_mq_debugfs_register_hctxs(struct request_queue *q)
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600899{
900 struct blk_mq_hw_ctx *hctx;
901 int i;
902
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200903 queue_for_each_hw_ctx(q, hctx, i)
904 blk_mq_debugfs_register_hctx(q, hctx);
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600905}
906
907void blk_mq_debugfs_unregister_hctxs(struct request_queue *q)
908{
909 struct blk_mq_hw_ctx *hctx;
910 int i;
911
912 queue_for_each_hw_ctx(q, hctx, i)
913 blk_mq_debugfs_unregister_hctx(hctx);
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800914}
Omar Sandovald332ce02017-05-04 08:24:40 -0600915
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200916void blk_mq_debugfs_register_sched(struct request_queue *q)
Omar Sandovald332ce02017-05-04 08:24:40 -0600917{
918 struct elevator_type *e = q->elevator->type;
919
Greg Kroah-Hartman7e41c3c2019-07-06 17:50:32 +0200920 /*
921 * If the parent directory has not been created yet, return, we will be
922 * called again later on and the directory/files will be created then.
923 */
924 if (!q->debugfs_dir)
925 return;
926
Omar Sandovald332ce02017-05-04 08:24:40 -0600927 if (!e->queue_debugfs_attrs)
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200928 return;
Omar Sandovald332ce02017-05-04 08:24:40 -0600929
930 q->sched_debugfs_dir = debugfs_create_dir("sched", q->debugfs_dir);
Omar Sandovald332ce02017-05-04 08:24:40 -0600931
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200932 debugfs_create_files(q->sched_debugfs_dir, q, e->queue_debugfs_attrs);
Omar Sandovald332ce02017-05-04 08:24:40 -0600933}
934
935void blk_mq_debugfs_unregister_sched(struct request_queue *q)
936{
937 debugfs_remove_recursive(q->sched_debugfs_dir);
938 q->sched_debugfs_dir = NULL;
939}
940
Ming Leicc566942018-12-17 09:46:00 +0800941void blk_mq_debugfs_unregister_rqos(struct rq_qos *rqos)
942{
943 debugfs_remove_recursive(rqos->debugfs_dir);
944 rqos->debugfs_dir = NULL;
945}
946
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200947void blk_mq_debugfs_register_rqos(struct rq_qos *rqos)
Ming Leicc566942018-12-17 09:46:00 +0800948{
949 struct request_queue *q = rqos->q;
950 const char *dir_name = rq_qos_id_to_name(rqos->id);
951
Ming Leicc566942018-12-17 09:46:00 +0800952 if (rqos->debugfs_dir || !rqos->ops->debugfs_attrs)
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200953 return;
Ming Leicc566942018-12-17 09:46:00 +0800954
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200955 if (!q->rqos_debugfs_dir)
Ming Leicc566942018-12-17 09:46:00 +0800956 q->rqos_debugfs_dir = debugfs_create_dir("rqos",
957 q->debugfs_dir);
Ming Leicc566942018-12-17 09:46:00 +0800958
959 rqos->debugfs_dir = debugfs_create_dir(dir_name,
960 rqos->q->rqos_debugfs_dir);
Ming Leicc566942018-12-17 09:46:00 +0800961
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200962 debugfs_create_files(rqos->debugfs_dir, rqos, rqos->ops->debugfs_attrs);
Ming Leicc566942018-12-17 09:46:00 +0800963}
964
965void blk_mq_debugfs_unregister_queue_rqos(struct request_queue *q)
966{
967 debugfs_remove_recursive(q->rqos_debugfs_dir);
968 q->rqos_debugfs_dir = NULL;
969}
970
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200971void blk_mq_debugfs_register_sched_hctx(struct request_queue *q,
972 struct blk_mq_hw_ctx *hctx)
Omar Sandovald332ce02017-05-04 08:24:40 -0600973{
974 struct elevator_type *e = q->elevator->type;
975
Saravanan D1e91e282021-04-07 10:59:58 -0700976 /*
977 * If the parent debugfs directory has not been created yet, return;
978 * We will be called again later on with appropriate parent debugfs
979 * directory from blk_register_queue()
980 */
981 if (!hctx->debugfs_dir)
982 return;
983
Omar Sandovald332ce02017-05-04 08:24:40 -0600984 if (!e->hctx_debugfs_attrs)
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200985 return;
Omar Sandovald332ce02017-05-04 08:24:40 -0600986
987 hctx->sched_debugfs_dir = debugfs_create_dir("sched",
988 hctx->debugfs_dir);
Greg Kroah-Hartman6cfc0082019-06-12 14:30:19 +0200989 debugfs_create_files(hctx->sched_debugfs_dir, hctx,
990 e->hctx_debugfs_attrs);
Omar Sandovald332ce02017-05-04 08:24:40 -0600991}
992
993void blk_mq_debugfs_unregister_sched_hctx(struct blk_mq_hw_ctx *hctx)
994{
995 debugfs_remove_recursive(hctx->sched_debugfs_dir);
996 hctx->sched_debugfs_dir = NULL;
997}