diff options
author | Tejun Heo <tj@kernel.org> | 2009-04-22 22:05:17 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-04-28 01:37:33 -0400 |
commit | a7f557923441186a3cdbabc54f1bcacf42b63bf5 (patch) | |
tree | 48e37802174cb98be43d89eb8bc4e466f4d79a02 /include/linux/blkdev.h | |
parent | a538cd03be6f363d039daa94199c28cfbd508455 (diff) |
block: kill blk_start_queueing()
blk_start_queueing() is identical to __blk_run_queue() except that it
doesn't check for recursion. None of the current users depends on
blk_start_queueing() running request_fn directly. Replace usages of
blk_start_queueing() with [__]blk_run_queue() and kill it.
[ Impact: removal of mostly duplicate interface function ]
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r-- | include/linux/blkdev.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 2755d5c6da22..12e20de44b60 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
@@ -797,7 +797,6 @@ extern void blk_sync_queue(struct request_queue *q); | |||
797 | extern void __blk_stop_queue(struct request_queue *q); | 797 | extern void __blk_stop_queue(struct request_queue *q); |
798 | extern void __blk_run_queue(struct request_queue *); | 798 | extern void __blk_run_queue(struct request_queue *); |
799 | extern void blk_run_queue(struct request_queue *); | 799 | extern void blk_run_queue(struct request_queue *); |
800 | extern void blk_start_queueing(struct request_queue *); | ||
801 | extern int blk_rq_map_user(struct request_queue *, struct request *, | 800 | extern int blk_rq_map_user(struct request_queue *, struct request *, |
802 | struct rq_map_data *, void __user *, unsigned long, | 801 | struct rq_map_data *, void __user *, unsigned long, |
803 | gfp_t); | 802 | gfp_t); |