diff options
author | Pavel Begunkov <asml.silence@gmail.com> | 2019-05-23 18:43:11 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-06-20 12:26:19 +0300 |
commit | 3a211b71529fdd0a89095b18fb19155db0c8fb5d (patch) | |
tree | e5b2a0c80b8bb6e55ad0e031a07f16b73979d2c4 /block/blk-core.c | |
parent | 243d9f78d942c4ed4a684202814c6cd0d1bcd954 (diff) | |
download | linux-3a211b71529fdd0a89095b18fb19155db0c8fb5d.tar.xz |
blk-core: Remove blk_end_request*() declarations
Commit a1ce35fa49852db60fc6e268 ("block: remove dead elevator code")
deleted blk_end_request() and friends, but some declaration are still
left. Purge them.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-core.c')
-rw-r--r-- | block/blk-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-core.c b/block/blk-core.c index 8340f69670d8..94c6520bc786 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -1348,7 +1348,7 @@ EXPORT_SYMBOL_GPL(blk_steal_bios); * * This special helper function is only for request stacking drivers * (e.g. request-based dm) so that they can handle partial completion. - * Actual device drivers should use blk_end_request instead. + * Actual device drivers should use blk_mq_end_request instead. * * Passing the result of blk_rq_bytes() as @nr_bytes guarantees * %false return from this function. |