summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-04-12 12:13:58 +0200
committerJens Axboe <axboe@fb.com>2017-04-19 10:19:45 -0600
commitfa1a15c08e23cb89c5837915b1989909bce47456 (patch)
tree81479d87f5e118553a9638b7aa06f78da63d7772 /block
parent314fe91b4a99949bb720501ba74d2228093bbf47 (diff)
downloadlinux-0-day-fa1a15c08e23cb89c5837915b1989909bce47456.tar.gz
linux-0-day-fa1a15c08e23cb89c5837915b1989909bce47456.tar.xz
block: remove blk_end_request_cur
This function is not used anywhere in the kernel. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block')
-rw-r--r--block/blk-core.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/block/blk-core.c b/block/blk-core.c
index f6e18ab551e7d..728299323f65b 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -2858,24 +2858,6 @@ void blk_end_request_all(struct request *rq, int error)
EXPORT_SYMBOL(blk_end_request_all);
/**
- * blk_end_request_cur - Helper function to finish the current request chunk.
- * @rq: the request to finish the current chunk for
- * @error: %0 for success, < %0 for error
- *
- * Description:
- * Complete the current consecutively mapped chunk from @rq.
- *
- * Return:
- * %false - we are done with this request
- * %true - still buffers pending for this request
- */
-bool blk_end_request_cur(struct request *rq, int error)
-{
- return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
-}
-EXPORT_SYMBOL(blk_end_request_cur);
-
-/**
* __blk_end_request - Helper function for drivers to complete the request.
* @rq: the request being processed
* @error: %0 for success, < %0 for error