mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
dm integrity: fix missing goto in bitmap_flush_interval error handling
commit17e9e134a8
upstream. Fixes:468dfca38b
("dm integrity: add a bitmap mode") Cc: stable@vger.kernel.org Signed-off-by: Tian Tao <tiantao6@hisilicon.com> Signed-off-by: Mike Snitzer <snitzer@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ff8fd1e3b5
commit
569bae00eb
1 changed files with 1 additions and 0 deletions
|
@ -3762,6 +3762,7 @@ static int dm_integrity_ctr(struct dm_target *ti, unsigned argc, char **argv)
|
||||||
if (val >= (uint64_t)UINT_MAX * 1000 / HZ) {
|
if (val >= (uint64_t)UINT_MAX * 1000 / HZ) {
|
||||||
r = -EINVAL;
|
r = -EINVAL;
|
||||||
ti->error = "Invalid bitmap_flush_interval argument";
|
ti->error = "Invalid bitmap_flush_interval argument";
|
||||||
|
goto bad;
|
||||||
}
|
}
|
||||||
ic->bitmap_flush_interval = msecs_to_jiffies(val);
|
ic->bitmap_flush_interval = msecs_to_jiffies(val);
|
||||||
} else if (!strncmp(opt_string, "internal_hash:", strlen("internal_hash:"))) {
|
} else if (!strncmp(opt_string, "internal_hash:", strlen("internal_hash:"))) {
|
||||||
|
|
Loading…
Reference in a new issue