summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBasavanagowda Kanur <gowda@gluster.com>2009-07-02 01:55:29 +0000
committerAnand V. Avati <avati@dev.gluster.com>2009-07-02 10:14:48 -0700
commit1a79ea17f77a99471205e8ddb10a94dce80eb7b2 (patch)
tree9dbf110285fb7b10b34322105c5c37a8eec60899
parente0db4ff890b591a58332994e37ce6db2bf430213 (diff)
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 <avati@dev.gluster.com>
-rw-r--r--xlators/performance/write-behind/src/write-behind.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/xlators/performance/write-behind/src/write-behind.c b/xlators/performance/write-behind/src/write-behind.c
index ab149b750f3..e3a2f24e319 100644
--- a/xlators/performance/write-behind/src/write-behind.c
+++ b/xlators/performance/write-behind/src/write-behind.c
@@ -924,6 +924,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;
@@ -977,7 +979,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;
}