diff options
author | Tejun Heo <tj@kernel.org> | 2011-10-19 08:31:18 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2011-10-19 08:31:18 -0400 |
commit | bc9fcbf9cb8ec76d340da16fbf48a9a316e14c52 (patch) | |
tree | 89376b8811a0d440328dc4f31ef062c811db1cc1 /block/blk.h | |
parent | ece84241b93c4693bfe0a8ec9a043a16d216d0cd (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 'block/blk.h')
-rw-r--r-- | block/blk.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/block/blk.h b/block/blk.h index 20b900a377c9..da247ba2aeaf 100644 --- a/block/blk.h +++ b/block/blk.h | |||
@@ -188,4 +188,17 @@ static inline int blk_do_io_stat(struct request *rq) | |||
188 | (rq->cmd_flags & REQ_DISCARD)); | 188 | (rq->cmd_flags & REQ_DISCARD)); |
189 | } | 189 | } |
190 | 190 | ||
191 | #endif | 191 | #ifdef CONFIG_BLK_DEV_THROTTLING |
192 | extern int blk_throtl_bio(struct request_queue *q, struct bio **bio); | ||
193 | extern int blk_throtl_init(struct request_queue *q); | ||
194 | extern void blk_throtl_exit(struct request_queue *q); | ||
195 | #else /* CONFIG_BLK_DEV_THROTTLING */ | ||
196 | static inline int blk_throtl_bio(struct request_queue *q, struct bio **bio) | ||
197 | { | ||
198 | return 0; | ||
199 | } | ||
200 | static inline int blk_throtl_init(struct request_queue *q) { return 0; } | ||
201 | static inline void blk_throtl_exit(struct request_queue *q) { } | ||
202 | #endif /* CONFIG_BLK_DEV_THROTTLING */ | ||
203 | |||
204 | #endif /* BLK_INTERNAL_H */ | ||