Correctly set the log_merge_wait_timeout_ms option

The initial code for setting the timeout used the wrong parsed variable.

Signed-off-by: Zach Brown <zab@versity.com>
This commit is contained in:
Zach Brown
2024-01-30 12:01:35 -08:00
parent 5ab38bfa48
commit c3890abd7b

View File

@@ -223,7 +223,7 @@ static int parse_options(struct super_block *sb, char *options, struct scoutfs_m
ret = verify_log_merge_wait_timeout_ms(sb, ret, nr);
if (ret < 0)
return ret;
opts->log_merge_wait_timeout_ms = nr64;
opts->log_merge_wait_timeout_ms = nr;
break;
case Opt_metadev_path: