Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 62d20aa6 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Jens Axboe
Browse files

dm-crypt: don't mess with BIP_BLOCK_INTEGRITY



This flag is never set right after calling bio_integrity_alloc,
so don't clear it and confuse the reader.

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 9346beb9
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -933,9 +933,6 @@ static int dm_crypt_integrity_io_alloc(struct dm_crypt_io *io, struct bio *bio)
	bip->bip_iter.bi_size = tag_len;
	bip->bip_iter.bi_sector = io->cc->start + io->sector;

	/* We own the metadata, do not let bio_free to release it */
	bip->bip_flags &= ~BIP_BLOCK_INTEGRITY;

	ret = bio_integrity_add_page(bio, virt_to_page(io->integrity_metadata),
				     tag_len, offset_in_page(io->integrity_metadata));
	if (unlikely(ret != tag_len))