aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/blkdev.h
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2011-10-19 08:31:18 -0400
committerJens Axboe <axboe@kernel.dk>2011-10-19 08:31:18 -0400
commitbc9fcbf9cb8ec76d340da16fbf48a9a316e14c52 (patch)
tree89376b8811a0d440328dc4f31ef062c811db1cc1 /include/linux/blkdev.h
parentece84241b93c4693bfe0a8ec9a043a16d216d0cd (diff)
block: move blk_throtl prototypes to block/blk.h
blk_throtl interface is block internal and there's no reason to have them in linux/blkdev.h. Move them to block/blk.h. This patch doesn't introduce any functional change. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Vivek Goyal <vgoyal@redhat.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r--include/linux/blkdev.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index 0b68044e7abb..5267cd2f20dc 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -1197,20 +1197,6 @@ static inline uint64_t rq_io_start_time_ns(struct request *req)
1197} 1197}
1198#endif 1198#endif
1199 1199
1200#ifdef CONFIG_BLK_DEV_THROTTLING
1201extern int blk_throtl_init(struct request_queue *q);
1202extern void blk_throtl_exit(struct request_queue *q);
1203extern int blk_throtl_bio(struct request_queue *q, struct bio **bio);
1204#else /* CONFIG_BLK_DEV_THROTTLING */
1205static inline int blk_throtl_bio(struct request_queue *q, struct bio **bio)
1206{
1207 return 0;
1208}
1209
1210static inline int blk_throtl_init(struct request_queue *q) { return 0; }
1211static inline int blk_throtl_exit(struct request_queue *q) { return 0; }
1212#endif /* CONFIG_BLK_DEV_THROTTLING */
1213
1214#define MODULE_ALIAS_BLOCKDEV(major,minor) \ 1200#define MODULE_ALIAS_BLOCKDEV(major,minor) \
1215 MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor)) 1201 MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor))
1216#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \ 1202#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \