summaryrefslogtreecommitdiffstats
path: root/block/bio-integrity.c
diff options
context:
space:
mode:
authorMartin K. Petersen <martin.petersen@oracle.com>2014-09-26 19:20:02 -0400
committerJens Axboe <axboe@fb.com>2014-09-27 09:14:51 -0600
commit8288f496eb1b1905c425e92eaf1abbb29119217b (patch)
tree12559a35cd7ec36bffe28c29a618d0d63b9c1c9f /block/bio-integrity.c
parent1859308853b19c4daf4afaab910d3d52ac1ec2ff (diff)
downloadlinux-0-day-8288f496eb1b1905c425e92eaf1abbb29119217b.tar.gz
linux-0-day-8288f496eb1b1905c425e92eaf1abbb29119217b.tar.xz
block: Add prefix to block integrity profile flags
Add a BLK_ prefix to the integrity profile flags. Also rename the flags to be more consistent with the generate/verify terminology in the rest of the integrity code. Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Sagi Grimberg <sagig@mellanox.com> Signed-off-by: Jens Axboe <axboe@fb.com>
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 fe4de033b34c0..e64733bb29b6a 100644
--- a/block/bio-integrity.c
+++ b/block/bio-integrity.c
@@ -173,11 +173,11 @@ bool bio_integrity_enabled(struct bio *bio)
return false;
if (bio_data_dir(bio) == READ && bi->verify_fn != NULL &&
- (bi->flags & INTEGRITY_FLAG_READ))
+ (bi->flags & BLK_INTEGRITY_VERIFY))
return true;
if (bio_data_dir(bio) == WRITE && bi->generate_fn != NULL &&
- (bi->flags & INTEGRITY_FLAG_WRITE))
+ (bi->flags & BLK_INTEGRITY_GENERATE))
return true;
return false;