diff options
author | shishir gowda <shishirng@gluster.com> | 2011-08-10 16:58:38 +0530 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2011-08-25 12:01:08 -0700 |
commit | cd567c063ec25b280d3fb5686a69b068c2d6d6df (patch) | |
tree | 636ed83dc9b7e4d7e019dcfc59bbc722f066e2e6 /libglusterfs/src/stack.h | |
parent | 9c68f3b53ffd27ea03e90da883c43e84bf94dd15 (diff) |
mem-pool: Make mem-pool ptr avialable in ptr
The header of the ptr returned from mem-pool will now store the
mem-pool ptr it belongs to. mem_put will now take only the pointer
to be freed.
Also, changing MALLOC call to GF_CALLOC in mem_get when we run out
of entries in mem-pool. This also will have the header information
saved.
Change-Id: I3de182663a7f5b49c9e9425e9531775b70bdff67
BUG: 3390
Reviewed-on: http://review.gluster.com/205
Reviewed-by: Amar Tumballi <amar@gluster.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'libglusterfs/src/stack.h')
-rw-r--r-- | libglusterfs/src/stack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libglusterfs/src/stack.h b/libglusterfs/src/stack.h index 87c723112c6..455a360be23 100644 --- a/libglusterfs/src/stack.h +++ b/libglusterfs/src/stack.h @@ -149,7 +149,7 @@ FRAME_DESTROY (call_frame_t *frame) } LOCK_DESTROY (&frame->lock); - mem_put (frame->root->pool->frame_mem_pool, frame); + mem_put (frame); if (local) GF_FREE (local); @@ -178,7 +178,7 @@ STACK_DESTROY (call_stack_t *stack) while (stack->frames.next) { FRAME_DESTROY (stack->frames.next); } - mem_put (stack->pool->stack_mem_pool, stack); + mem_put (stack); if (local) GF_FREE (local); |