1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-31 19:52:22 +00:00

docs: more than 23 is not supported for CHUNK_MAX_EXP, fixes #3115

(cherry picked from commit e7fd1ff2ee)
This commit is contained in:
Thomas Waldmann 2017-11-05 21:35:58 +01:00
parent 304c9a1dc6
commit 0c7eaec99d

View file

@ -7,6 +7,7 @@ CHUNK_MIN_EXP and CHUNK_MAX_EXP give the exponent N of the 2^N minimum and
maximum chunk size. Required: CHUNK_MIN_EXP < CHUNK_MAX_EXP. maximum chunk size. Required: CHUNK_MIN_EXP < CHUNK_MAX_EXP.
Defaults: 19 (2^19 == 512KiB) minimum, 23 (2^23 == 8MiB) maximum. Defaults: 19 (2^19 == 512KiB) minimum, 23 (2^23 == 8MiB) maximum.
Currently it is not supported to give more than 23 as maximum.
HASH_MASK_BITS is the number of least-significant bits of the rolling hash HASH_MASK_BITS is the number of least-significant bits of the rolling hash
that need to be zero to trigger a chunk cut. that need to be zero to trigger a chunk cut.