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 committed by GitHub
parent 34efa8e2d8
commit 9f3f80c0cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
}