summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src
diff options
context:
space:
mode:
authorAnand V. Avati <avati@gluster.com>2009-04-13 14:03:43 +0530
committerAnand V. Avati <avati@amp.gluster.com>2009-04-13 14:55:32 +0530
commita0bb8a02cd334aeda02e6146ea541a7dae4223d5 (patch)
treef091cedbcf5dce827e581fa01aea4280af0795b2 /libglusterfs/src
parent3fb7252c5ec7edd8c9234d4fcc369fd10707a613 (diff)
bug fix in iobuf_select_arena - call __iobuf_pool_add_arena (unlocked version)
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'libglusterfs/src')
-rw-r--r--libglusterfs/src/iobuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libglusterfs/src/iobuf.c b/libglusterfs/src/iobuf.c
index 3ca87ca65..a4c6918d7 100644
--- a/libglusterfs/src/iobuf.c
+++ b/libglusterfs/src/iobuf.c
@@ -262,7 +262,7 @@ __iobuf_select_arena (struct iobuf_pool *iobuf_pool)
if (!iobuf_arena) {
/* all arenas were full */
- iobuf_arena = iobuf_pool_add_arena (iobuf_pool);
+ iobuf_arena = __iobuf_pool_add_arena (iobuf_pool);
}
return iobuf_arena;