mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-22 16:06:04 -05:00
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
|