[Bf-blender-cvs] [57d5ddc] master: Revert "BLI_ghash: Fix initial over-allocation of mempool chunks."

Bastien Montagne noreply at git.blender.org
Wed Jun 1 17:39:18 CEST 2016


Commit: 57d5ddc2519379a16c735edbdc30b9d843f636da
Author: Bastien Montagne
Date:   Wed Jun 1 17:38:50 2016 +0200
Branches: master
https://developer.blender.org/rB57d5ddc2519379a16c735edbdc30b9d843f636da

Revert "BLI_ghash: Fix initial over-allocation of mempool chunks."

Useless change in fact, sorry for the noise.

This reverts commit b08473680e141ab6f28f99fc3b1dbbc4add89bed.

===================================================================

M	source/blender/blenlib/intern/BLI_ghash.c

===================================================================

diff --git a/source/blender/blenlib/intern/BLI_ghash.c b/source/blender/blenlib/intern/BLI_ghash.c
index 857ce1a..06946e5 100644
--- a/source/blender/blenlib/intern/BLI_ghash.c
+++ b/source/blender/blenlib/intern/BLI_ghash.c
@@ -441,7 +441,7 @@ static GHash *ghash_new(GHashHashFP hashfp, GHashCmpFP cmpfp, const char *info,
 	gh->flag = flag;
 
 	ghash_buckets_reset(gh, nentries_reserve);
-	gh->entrypool = BLI_mempool_create(GHASH_ENTRY_SIZE(flag & GHASH_FLAG_IS_GSET), 0, 64, BLI_MEMPOOL_NOP);
+	gh->entrypool = BLI_mempool_create(GHASH_ENTRY_SIZE(flag & GHASH_FLAG_IS_GSET), 64, 64, BLI_MEMPOOL_NOP);
 
 	return gh;
 }




More information about the Bf-blender-cvs mailing list