diff options
author | Mikulas Patocka <mpatocka@redhat.com> | 2020-04-03 20:05:50 +0300 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2020-04-03 20:07:41 +0300 |
commit | 8267d8fb4819afa76b2a54dca48efdda6f0b1910 (patch) | |
tree | 3462cb434ed814e3186fa90efdc51077dae36098 /drivers/md | |
parent | 120c9257f5f19e5d1e87efcbb5531b7cd81b7d74 (diff) | |
download | linux-8267d8fb4819afa76b2a54dca48efdda6f0b1910.tar.xz |
dm integrity: fix logic bug in integrity tag testing
If all the bytes are equal to DISCARD_FILLER, we want to accept the
buffer. If any of the bytes are different, we must do thorough
tag-by-tag checking.
The condition was inverted.
Fixes: 84597a44a9d8 ("dm integrity: add optional discard support")
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-integrity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-integrity.c b/drivers/md/dm-integrity.c index 49fee5aecbc9..4094c47eca7f 100644 --- a/drivers/md/dm-integrity.c +++ b/drivers/md/dm-integrity.c @@ -1333,7 +1333,7 @@ static int dm_integrity_rw_tag(struct dm_integrity_c *ic, unsigned char *tag, se if (likely(is_power_of_2(ic->tag_size))) { if (unlikely(memcmp(dp, tag, to_copy))) if (unlikely(!ic->discard) || - unlikely(!memchr_inv(dp, DISCARD_FILLER, to_copy))) { + unlikely(memchr_inv(dp, DISCARD_FILLER, to_copy) != NULL)) { goto thorough_test; } } else { |