From add4dd9623de51dd67ecb8450ad1a57894d92dc2 Mon Sep 17 00:00:00 2001 From: vinayak hegde Date: Thu, 5 Nov 2009 02:53:48 +0000 Subject: performance/stat-prefetch: In sp_readdir_cbk op_ret value is not handled. Signed-off-by: Vinayak Hegde Signed-off-by: Anand V. Avati BUG: 360 (All fop fails when stat-prefetch is loaded on afr.) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=360 --- xlators/performance/stat-prefetch/src/stat-prefetch.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'xlators/performance/stat-prefetch/src/stat-prefetch.c') diff --git a/xlators/performance/stat-prefetch/src/stat-prefetch.c b/xlators/performance/stat-prefetch/src/stat-prefetch.c index d6e8bad1e1e..9035ed9b2bf 100644 --- a/xlators/performance/stat-prefetch/src/stat-prefetch.c +++ b/xlators/performance/stat-prefetch/src/stat-prefetch.c @@ -865,6 +865,10 @@ sp_readdir_cbk (call_frame_t *frame, void *cookie, xlator_t *this, fd_t *fd = NULL; int32_t ret = 0; + if (op_ret == -1) { + goto out; + } + local = frame->local; if (local == NULL) { goto out; -- cgit