diff options
Diffstat (limited to 'xlators/cluster/dht')
-rw-r--r-- | xlators/cluster/dht/src/dht.c | 2 | ||||
-rw-r--r-- | xlators/cluster/dht/src/nufa.c | 2 | ||||
-rw-r--r-- | xlators/cluster/dht/src/switch.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/xlators/cluster/dht/src/dht.c b/xlators/cluster/dht/src/dht.c index eb55fd46cd5..4502a751b49 100644 --- a/xlators/cluster/dht/src/dht.c +++ b/xlators/cluster/dht/src/dht.c @@ -454,7 +454,7 @@ init (xlator_t *this) goto err; } - this->local_pool = mem_pool_new (dht_local_t, 1024); + this->local_pool = mem_pool_new (dht_local_t, 512); if (!this->local_pool) { gf_log (this->name, GF_LOG_ERROR, "failed to create local_t's memory pool"); diff --git a/xlators/cluster/dht/src/nufa.c b/xlators/cluster/dht/src/nufa.c index 63778afcf6e..951fe4e0410 100644 --- a/xlators/cluster/dht/src/nufa.c +++ b/xlators/cluster/dht/src/nufa.c @@ -626,7 +626,7 @@ init (xlator_t *this) goto err; } - this->local_pool = mem_pool_new (dht_local_t, 1024); + this->local_pool = mem_pool_new (dht_local_t, 128); if (!this->local_pool) { gf_log (this->name, GF_LOG_ERROR, "failed to create local_t's memory pool"); diff --git a/xlators/cluster/dht/src/switch.c b/xlators/cluster/dht/src/switch.c index 4b5545ffecc..1451e011e61 100644 --- a/xlators/cluster/dht/src/switch.c +++ b/xlators/cluster/dht/src/switch.c @@ -933,7 +933,7 @@ init (xlator_t *this) goto err; } - this->local_pool = mem_pool_new (dht_local_t, 1024); + this->local_pool = mem_pool_new (dht_local_t, 128); if (!this->local_pool) { gf_log (this->name, GF_LOG_ERROR, "failed to create local_t's memory pool"); |