1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-04 10:39:50 +00:00

hashindex: always have at least 1 empty bucket

avoid rounding / integer conversion issues bringing this down to 0.
This commit is contained in:
Thomas Waldmann 2023-02-08 16:23:10 +01:00 committed by snsmac
parent 241eaec413
commit ec32413b5e

View file

@ -241,8 +241,10 @@ int get_upper_limit(int num_buckets){
}
int get_min_empty(int num_buckets){
/* Differently from load, the effective load also considers tombstones (deleted buckets). */
return (int)(num_buckets * (1.0 - HASH_MAX_EFF_LOAD));
/* Differently from load, the effective load also considers tombstones (deleted buckets).
* We always add 1, so this never can return 0 (0 empty buckets would be a bad HT state).
*/
return 1 + (int)(num_buckets * (1.0 - HASH_MAX_EFF_LOAD));
}
int size_idx(int size){