mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 05:26:07 +00:00
d9f1439a30
block/blk-mq-debugfs-zone.c contains a single debugfs attribute function. Defining this outside of block/blk-zoned.c does not really help in any way, so move this zone related debugfs attribute to block/blk-zoned.c and delete block/blk-mq-debugfs-zone.c. Signed-off-by: Damien Le Moal <dlemoal@kernel.org> Reviewed-by: Hannes Reinecke <hare@suse.de> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Bart Van Assche <bvanassche@acm.org> Tested-by: Hans Holmberg <hans.holmberg@wdc.com> Tested-by: Dennis Maisenbacher <dennis.maisenbacher@wdc.com> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Link: https://lore.kernel.org/r/20240408014128.205141-25-dlemoal@kernel.org Signed-off-by: Jens Axboe <axboe@kernel.dk>
96 lines
2.4 KiB
C
96 lines
2.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef INT_BLK_MQ_DEBUGFS_H
|
|
#define INT_BLK_MQ_DEBUGFS_H
|
|
|
|
#ifdef CONFIG_BLK_DEBUG_FS
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
struct blk_mq_hw_ctx;
|
|
|
|
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;
|
|
};
|
|
|
|
int __blk_mq_debugfs_rq_show(struct seq_file *m, struct request *rq);
|
|
int blk_mq_debugfs_rq_show(struct seq_file *m, void *v);
|
|
|
|
void blk_mq_debugfs_register(struct request_queue *q);
|
|
void blk_mq_debugfs_register_hctx(struct request_queue *q,
|
|
struct blk_mq_hw_ctx *hctx);
|
|
void blk_mq_debugfs_unregister_hctx(struct blk_mq_hw_ctx *hctx);
|
|
void blk_mq_debugfs_register_hctxs(struct request_queue *q);
|
|
void blk_mq_debugfs_unregister_hctxs(struct request_queue *q);
|
|
|
|
void blk_mq_debugfs_register_sched(struct request_queue *q);
|
|
void blk_mq_debugfs_unregister_sched(struct request_queue *q);
|
|
void blk_mq_debugfs_register_sched_hctx(struct request_queue *q,
|
|
struct blk_mq_hw_ctx *hctx);
|
|
void blk_mq_debugfs_unregister_sched_hctx(struct blk_mq_hw_ctx *hctx);
|
|
|
|
void blk_mq_debugfs_register_rqos(struct rq_qos *rqos);
|
|
void blk_mq_debugfs_unregister_rqos(struct rq_qos *rqos);
|
|
#else
|
|
static inline void blk_mq_debugfs_register(struct request_queue *q)
|
|
{
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_register_hctx(struct request_queue *q,
|
|
struct blk_mq_hw_ctx *hctx)
|
|
{
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_unregister_hctx(struct blk_mq_hw_ctx *hctx)
|
|
{
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_register_hctxs(struct request_queue *q)
|
|
{
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_unregister_hctxs(struct request_queue *q)
|
|
{
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_register_sched(struct request_queue *q)
|
|
{
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_unregister_sched(struct request_queue *q)
|
|
{
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_register_sched_hctx(struct request_queue *q,
|
|
struct blk_mq_hw_ctx *hctx)
|
|
{
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_unregister_sched_hctx(struct blk_mq_hw_ctx *hctx)
|
|
{
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_register_rqos(struct rq_qos *rqos)
|
|
{
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_unregister_rqos(struct rq_qos *rqos)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#if defined(CONFIG_BLK_DEV_ZONED) && defined(CONFIG_BLK_DEBUG_FS)
|
|
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
|
|
|
|
#endif
|