From a81debc473fe5eddeba318c91715252238069b1e Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Fri, 20 Aug 2010 05:37:31 +0000 Subject: performance/stat-prefetch: use SP_STACK_UNWIND instead of STACK_UNWIND_STRICT. Signed-off-by: Raghavendra G Signed-off-by: Anand V. Avati BUG: 993 (memory leak-in stat-prefetch) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=993 --- xlators/performance/stat-prefetch/src/stat-prefetch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xlators/performance') diff --git a/xlators/performance/stat-prefetch/src/stat-prefetch.c b/xlators/performance/stat-prefetch/src/stat-prefetch.c index 66d7dffd265..058cae3cd9b 100644 --- a/xlators/performance/stat-prefetch/src/stat-prefetch.c +++ b/xlators/performance/stat-prefetch/src/stat-prefetch.c @@ -2997,7 +2997,7 @@ int32_t sp_getxattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret, int32_t op_errno, dict_t *dict) { - STACK_UNWIND_STRICT (getxattr, frame, op_ret, op_errno, dict); + SP_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict); return 0; } @@ -3219,7 +3219,7 @@ int32_t sp_stbuf_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret, int32_t op_errno, struct iatt *buf) { - STACK_UNWIND_STRICT (stat, frame, op_ret, op_errno, buf); + SP_STACK_UNWIND (stat, frame, op_ret, op_errno, buf); return 0; } -- cgit