-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
blk-mq: move debugfs declarations to a separate header file
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>
- Loading branch information
Omar Sandoval
authored and
Jens Axboe
committed
May 4, 2017
1 parent
18d4d7d
commit d173a25
Showing
6 changed files
with
33 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters