diff options
Diffstat (limited to 'libglusterfs/src/rbthash.c')
| -rw-r--r-- | libglusterfs/src/rbthash.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/libglusterfs/src/rbthash.c b/libglusterfs/src/rbthash.c index 52d8a15fd2c..06fc7ee35c8 100644 --- a/libglusterfs/src/rbthash.c +++ b/libglusterfs/src/rbthash.c @@ -83,7 +83,7 @@ err:   */  rbthash_table_t * -rbthash_table_init (int buckets, rbt_hasher_t hfunc, +rbthash_table_init (glusterfs_ctx_t *ctx, int buckets, rbt_hasher_t hfunc,                      rbt_data_destroyer_t dfunc,                      unsigned long expected_entries,                      struct mem_pool *entrypool) @@ -123,7 +123,8 @@ rbthash_table_init (int buckets, rbt_hasher_t hfunc,          if (expected_entries) {                  newtab->entrypool = -                        mem_pool_new (rbthash_entry_t, expected_entries); +                        mem_pool_new_ctx (ctx, rbthash_entry_t, +                                          expected_entries);                  if (!newtab->entrypool) {                          goto free_buckets;                  }  | 
