From ebfcb5368c225aed11c007aee1e362c5d345c2b0 Mon Sep 17 00:00:00 2001 From: Basavanagowda Kanur Date: Thu, 2 Jul 2009 01:55:29 +0000 Subject: performance/write-behind - bug fix in open() and create(). open() & create() calls should reset frame->local to NULL. bz# 104 Signed-off-by: Anand V. Avati --- xlators/performance/write-behind/src/write-behind.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xlators/performance/write-behind/src/write-behind.c b/xlators/performance/write-behind/src/write-behind.c index f1f1604e912..ebf6be062de 100644 --- a/xlators/performance/write-behind/src/write-behind.c +++ b/xlators/performance/write-behind/src/write-behind.c @@ -1136,6 +1136,8 @@ wb_open_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret, LOCK_INIT (&file->lock); } + + frame->local = NULL; STACK_UNWIND (frame, op_ret, op_errno, fd); return 0; @@ -1193,7 +1195,9 @@ wb_create_cbk (call_frame_t *frame, void *cookie, xlator_t *this, LOCK_INIT (&file->lock); } - + + frame->local = NULL; + STACK_UNWIND (frame, op_ret, op_errno, fd, inode, buf); return 0; } -- cgit