mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
d173a25165
Preparation for adding more declarations. Signed-off-by: Omar Sandoval <osandov@fb.com> Reviewed-by: Hannes Reinecke <hare@suse.com> Signed-off-by: Jens Axboe <axboe@fb.com>
30 lines
656 B
C
30 lines
656 B
C
#ifndef INT_BLK_MQ_DEBUGFS_H
|
|
#define INT_BLK_MQ_DEBUGFS_H
|
|
|
|
#ifdef CONFIG_BLK_DEBUG_FS
|
|
int blk_mq_debugfs_register(struct request_queue *q);
|
|
void blk_mq_debugfs_unregister(struct request_queue *q);
|
|
int blk_mq_debugfs_register_mq(struct request_queue *q);
|
|
void blk_mq_debugfs_unregister_mq(struct request_queue *q);
|
|
#else
|
|
static inline int blk_mq_debugfs_register(struct request_queue *q)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_unregister(struct request_queue *q)
|
|
{
|
|
}
|
|
|
|
static inline int blk_mq_debugfs_register_mq(struct request_queue *q)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void blk_mq_debugfs_unregister_mq(struct request_queue *q)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif
|