blk-mq-debugfs.h 2.7 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4 5
#ifndef INT_BLK_MQ_DEBUGFS_H
#define INT_BLK_MQ_DEBUGFS_H

#ifdef CONFIG_BLK_DEBUG_FS
6 7 8

#include <linux/seq_file.h>

M
Ming Lei 已提交
9 10
struct blk_mq_hw_ctx;

11 12 13 14 15 16 17 18 19
struct blk_mq_debugfs_attr {
	const char *name;
	umode_t mode;
	int (*show)(void *, struct seq_file *);
	ssize_t (*write)(void *, const char __user *, size_t, loff_t *);
	/* Set either .show or .seq_ops. */
	const struct seq_operations *seq_ops;
};

20
int __blk_mq_debugfs_rq_show(struct seq_file *m, struct request *rq);
O
Omar Sandoval 已提交
21 22
int blk_mq_debugfs_rq_show(struct seq_file *m, void *v);

23
void blk_mq_debugfs_register(struct request_queue *q);
24
void blk_mq_debugfs_unregister(struct request_queue *q);
25 26
void blk_mq_debugfs_register_hctx(struct request_queue *q,
				  struct blk_mq_hw_ctx *hctx);
27
void blk_mq_debugfs_unregister_hctx(struct blk_mq_hw_ctx *hctx);
28
void blk_mq_debugfs_register_hctxs(struct request_queue *q);
29
void blk_mq_debugfs_unregister_hctxs(struct request_queue *q);
30

31
void blk_mq_debugfs_register_sched(struct request_queue *q);
32
void blk_mq_debugfs_unregister_sched(struct request_queue *q);
33
void blk_mq_debugfs_register_sched_hctx(struct request_queue *q,
34 35
				       struct blk_mq_hw_ctx *hctx);
void blk_mq_debugfs_unregister_sched_hctx(struct blk_mq_hw_ctx *hctx);
M
Ming Lei 已提交
36

37
void blk_mq_debugfs_register_rqos(struct rq_qos *rqos);
M
Ming Lei 已提交
38 39
void blk_mq_debugfs_unregister_rqos(struct rq_qos *rqos);
void blk_mq_debugfs_unregister_queue_rqos(struct request_queue *q);
40
#else
41
static inline void blk_mq_debugfs_register(struct request_queue *q)
42 43 44 45 46 47 48
{
}

static inline void blk_mq_debugfs_unregister(struct request_queue *q)
{
}

49 50
static inline void blk_mq_debugfs_register_hctx(struct request_queue *q,
						struct blk_mq_hw_ctx *hctx)
51 52 53
{
}

54 55 56 57
static inline void blk_mq_debugfs_unregister_hctx(struct blk_mq_hw_ctx *hctx)
{
}

58
static inline void blk_mq_debugfs_register_hctxs(struct request_queue *q)
59 60 61 62
{
}

static inline void blk_mq_debugfs_unregister_hctxs(struct request_queue *q)
63 64
{
}
65

66
static inline void blk_mq_debugfs_register_sched(struct request_queue *q)
67 68 69 70 71 72 73
{
}

static inline void blk_mq_debugfs_unregister_sched(struct request_queue *q)
{
}

74 75
static inline void blk_mq_debugfs_register_sched_hctx(struct request_queue *q,
						      struct blk_mq_hw_ctx *hctx)
76 77 78 79 80 81
{
}

static inline void blk_mq_debugfs_unregister_sched_hctx(struct blk_mq_hw_ctx *hctx)
{
}
M
Ming Lei 已提交
82

83
static inline void blk_mq_debugfs_register_rqos(struct rq_qos *rqos)
M
Ming Lei 已提交
84 85 86 87 88 89 90 91 92 93
{
}

static inline void blk_mq_debugfs_unregister_rqos(struct rq_qos *rqos)
{
}

static inline void blk_mq_debugfs_unregister_queue_rqos(struct request_queue *q)
{
}
94 95
#endif

96 97 98 99 100 101 102 103 104
#ifdef CONFIG_BLK_DEBUG_FS_ZONED
int queue_zone_wlock_show(void *data, struct seq_file *m);
#else
static inline int queue_zone_wlock_show(void *data, struct seq_file *m)
{
	return 0;
}
#endif

105
#endif