summaryrefslogtreecommitdiffstats
path: root/block/blk-crypto-fallback.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2021-01-26 15:33:08 +0100
committerJens Axboe <axboe@kernel.dk>2021-01-26 08:50:01 -0700
commit46bbf653a67a36989a55dbb894c8b94c5ecb2858 (patch)
treeb6951d795c88d5e0a82c265db6005e2609b1feb7 /block/blk-crypto-fallback.c
parentf65b95fe0cedc1be2ec33a2892ee43fae0408719 (diff)
downloadlinux-46bbf653a67a36989a55dbb894c8b94c5ecb2858.tar.gz
linux-46bbf653a67a36989a55dbb894c8b94c5ecb2858.tar.xz
block: inherit BIO_REMAPPED when cloning bios
Cloned bios are can be used to on the same device, in which case we need to inherit the BIO_REMAPPED flag to avoid a double partition remap. When the cloned bios are used on another device, bio_set_dev will clear the flag. Fixes: 309dca309fc3 ("block: store a block_device pointer in struct bio") Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-crypto-fallback.c')
-rw-r--r--block/blk-crypto-fallback.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/block/blk-crypto-fallback.c b/block/blk-crypto-fallback.c
index 8f1e18176731..50c225398e4d 100644
--- a/block/blk-crypto-fallback.c
+++ b/block/blk-crypto-fallback.c
@@ -168,6 +168,8 @@ static struct bio *blk_crypto_clone_bio(struct bio *bio_src)
if (!bio)
return NULL;
bio->bi_bdev = bio_src->bi_bdev;
+ if (bio_flagged(bio_src, BIO_REMAPPED))
+ bio_set_flag(bio, BIO_REMAPPED);
bio->bi_opf = bio_src->bi_opf;
bio->bi_ioprio = bio_src->bi_ioprio;
bio->bi_write_hint = bio_src->bi_write_hint;