From a0bb8a02cd334aeda02e6146ea541a7dae4223d5 Mon Sep 17 00:00:00 2001 From: "Anand V. Avati" Date: Mon, 13 Apr 2009 14:03:43 +0530 Subject: bug fix in iobuf_select_arena - call __iobuf_pool_add_arena (unlocked version) Signed-off-by: Anand V. Avati --- libglusterfs/src/iobuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libglusterfs/src/iobuf.c') diff --git a/libglusterfs/src/iobuf.c b/libglusterfs/src/iobuf.c index 3ca87ca6..a4c6918d 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; -- cgit