summaryrefslogtreecommitdiffstats
path: root/block/blk-mq.c
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2023-03-15 11:39:05 -0700
committerJens Axboe <axboe@kernel.dk>2023-03-16 09:35:09 -0600
commit435c0e999689b7f383d0a27978cdaa08669cf134 (patch)
tree9747240fcfac504a6f80abcfcf2a1974189e9f73 /block/blk-mq.c
parent5c7cb94452901a93e90c2230632e2c12a681bc92 (diff)
downloadlinux-stable-435c0e999689b7f383d0a27978cdaa08669cf134.tar.gz
linux-stable-435c0e999689b7f383d0a27978cdaa08669cf134.tar.bz2
linux-stable-435c0e999689b7f383d0a27978cdaa08669cf134.zip
blk-crypto: remove blk_crypto_insert_cloned_request()
blk_crypto_insert_cloned_request() is the same as blk_crypto_rq_get_keyslot(), so just use that directly. Signed-off-by: Eric Biggers <ebiggers@google.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/20230315183907.53675-2-ebiggers@kernel.org Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-mq.c')
-rw-r--r--block/blk-mq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-mq.c b/block/blk-mq.c
index 49825538d932..5e819de2f5e7 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -3049,7 +3049,7 @@ blk_status_t blk_insert_cloned_request(struct request *rq)
if (q->disk && should_fail_request(q->disk->part0, blk_rq_bytes(rq)))
return BLK_STS_IOERR;
- if (blk_crypto_insert_cloned_request(rq))
+ if (blk_crypto_rq_get_keyslot(rq))
return BLK_STS_IOERR;
blk_account_io_start(rq);