summaryrefslogtreecommitdiff
path: root/block/bio-integrity.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2024-06-13 10:48:21 +0200
committerJens Axboe <axboe@kernel.dk>2024-06-14 10:20:06 -0600
commit9f4aa46f2a7401025d8561495cf8740f773310fc (patch)
tree831a39dda53de6f7f55c0551c46fce0ad25882c7 /block/bio-integrity.c
parent3c3e85ddffae93eba1a257eb6939bf5dc1e93b9e (diff)
block: invert the BLK_INTEGRITY_{GENERATE,VERIFY} flags
Invert the flags so that user set values will be able to persist revalidating the integrity information once we switch the integrity information to queue_limits. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com> Reviewed-by: Hannes Reinecke <hare@suse.de> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Link: https://lore.kernel.org/r/20240613084839.1044015-12-hch@lst.de Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/bio-integrity.c')
-rw-r--r--block/bio-integrity.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/bio-integrity.c b/block/bio-integrity.c
index 31dbc2853f92..173ffd4d6237 100644
--- a/block/bio-integrity.c
+++ b/block/bio-integrity.c
@@ -448,10 +448,10 @@ bool bio_integrity_prep(struct bio *bio)
return true;
if (bio_data_dir(bio) == READ) {
- if (!(bi->flags & BLK_INTEGRITY_VERIFY))
+ if (bi->flags & BLK_INTEGRITY_NOVERIFY)
return true;
} else {
- if (!(bi->flags & BLK_INTEGRITY_GENERATE))
+ if (bi->flags & BLK_INTEGRITY_NOGENERATE)
return true;
/*