diff options
author | Tejun Heo <tj@kernel.org> | 2009-04-23 11:05:18 +0900 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-04-28 07:37:34 +0200 |
commit | 0b302d5aa7975006fa2ec3d66386610b9b36c669 (patch) | |
tree | bba5de7b377ad167c4291cbdfd203ca7616d696d /include | |
parent | 158dbda0068e63c7cce7bd47c123bd1dfa5a902c (diff) | |
download | linux-3.10-0b302d5aa7975006fa2ec3d66386610b9b36c669.tar.gz linux-3.10-0b302d5aa7975006fa2ec3d66386610b9b36c669.tar.bz2 linux-3.10-0b302d5aa7975006fa2ec3d66386610b9b36c669.zip |
block: kill blk_end_request_callback()
With recent IDE updates, blk_end_request_callback() doesn't have any
user now. Kill it.
[ Impact: removal of unused convoluted interface ]
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/blkdev.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 156ffd9de96..1fa9dcf9aa6 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -855,9 +855,6 @@ extern int __blk_end_request(struct request *rq, int error, extern int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes, unsigned int bidi_bytes); extern void end_request(struct request *, int); -extern int blk_end_request_callback(struct request *rq, int error, - unsigned int nr_bytes, - int (drv_callback)(struct request *)); extern void blk_complete_request(struct request *); extern void __blk_complete_request(struct request *); extern void blk_abort_request(struct request *); |