ZTS: Slightly increase dedup_quota limit

As described in the comment above this check the space used by
logged entries is not accounted for and some margin needs to be
added in.  While uncommon we have slightly exceeded the 600,000
threshold on some CI run so we increase the limit a bit more.

Reviewed-by: Alexander Motin <mav@FreeBSD.org>
Reviewed-by: Tony Hutter <hutter2@llnl.gov>
Reviewed-by: George Melikov <mail@gmelikov.ru>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #16637
This commit is contained in:
Brian Behlendorf 2024-10-11 14:22:24 -07:00
parent 7f830d783b
commit 5bc27acf51

View File

@ -221,7 +221,7 @@ function ddt_dedup_vdev_limit
# For here, we just set the entry count a little higher than what we
# expect to allow for some instability.
#
log_must test $(ddt_entries) -le 600000
log_must test $(ddt_entries) -le 650000
do_clean
}