Skip to content

Commit ad4e80a

Browse files
nook1208snitm
authored andcommitted
dm verity fec: fix hash block number in verity_fec_decode
The error correction data is computed as if data and hash blocks were concatenated. But hash block number starts from v->hash_start. So, we have to calculate hash block number based on that. Fixes: a739ff3 ("dm verity: add support for forward error correction") Cc: stable@vger.kernel.org Signed-off-by: Sunwook Eom <speed.eom@samsung.com> Reviewed-by: Sami Tolvanen <samitolvanen@google.com> Signed-off-by: Mike Snitzer <snitzer@redhat.com>
1 parent 31b2212 commit ad4e80a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/md/dm-verity-fec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ int verity_fec_decode(struct dm_verity *v, struct dm_verity_io *io,
435435
fio->level++;
436436

437437
if (type == DM_VERITY_BLOCK_TYPE_METADATA)
438-
block += v->data_blocks;
438+
block = block - v->hash_start + v->data_blocks;
439439

440440
/*
441441
* For RS(M, N), the continuous FEC data is divided into blocks of N

0 commit comments

Comments
 (0)