Skip to content

Commit 160f99d

Browse files
jhs2-leesnitm
authored andcommitted
dm verity: fix DM_VERITY_OPTS_MAX value
Three optional parameters must be accepted at once in a DM verity table, e.g.: (verity_error_handling_mode) (ignore_zero_block) (check_at_most_once) Fix this to be possible by incrementing DM_VERITY_OPTS_MAX. Signed-off-by: JeongHyeon Lee <jhs2.lee@samsung.com> Fixes: 843f38d ("dm verity: add 'check_at_most_once' option to only validate hashes once") Cc: stable@vger.kernel.org Signed-off-by: Mike Snitzer <snitzer@redhat.com>
1 parent 0d02ec6 commit 160f99d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/md/dm-verity-target.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#define DM_VERITY_OPT_IGN_ZEROES "ignore_zero_blocks"
3535
#define DM_VERITY_OPT_AT_MOST_ONCE "check_at_most_once"
3636

37-
#define DM_VERITY_OPTS_MAX (2 + DM_VERITY_OPTS_FEC + \
37+
#define DM_VERITY_OPTS_MAX (3 + DM_VERITY_OPTS_FEC + \
3838
DM_VERITY_ROOT_HASH_VERIFICATION_OPTS)
3939

4040
static unsigned dm_verity_prefetch_cluster = DM_VERITY_DEFAULT_PREFETCH_SIZE;

0 commit comments

Comments
 (0)