summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/fd.c
diff options
context:
space:
mode:
authorAnand Avati <avati@gluster.com>2009-12-06 05:31:44 +0000
committerAnand V. Avati <avati@dev.gluster.com>2009-12-06 03:01:59 -0800
commita53cd95827df0a9c560fdf5e07b0c23d03707b04 (patch)
tree9bfefe3967a79012b04ca03776648ead6947e222 /libglusterfs/src/fd.c
parentea93dd6397b79842c1d8e5189ff217201c002a8d (diff)
THIS: set THIS pointers before forget/release/releasedir callbacks
Signed-off-by: Anand V. Avati <avati@blackhole.gluster.com> Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
Diffstat (limited to 'libglusterfs/src/fd.c')
-rw-r--r--libglusterfs/src/fd.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libglusterfs/src/fd.c b/libglusterfs/src/fd.c
index 59e702dd9de..c6b060c61a5 100644
--- a/libglusterfs/src/fd.c
+++ b/libglusterfs/src/fd.c
@@ -385,6 +385,7 @@ fd_destroy (fd_t *fd)
{
xlator_t *xl = NULL;
int i = 0;
+ xlator_t *old_THIS = NULL;
if (fd == NULL){
gf_log ("xlator", GF_LOG_ERROR, "invalid arugument");
@@ -402,16 +403,22 @@ fd_destroy (fd_t *fd)
for (i = 0; i < fd->inode->table->xl->ctx->xl_count; i++) {
if (fd->_ctx[i].key) {
xl = (xlator_t *)(long)fd->_ctx[i].key;
+ old_THIS = THIS;
+ THIS = xl;
if (xl->cbks->releasedir)
xl->cbks->releasedir (xl, fd);
+ THIS = old_THIS;
}
}
} else {
for (i = 0; i < fd->inode->table->xl->ctx->xl_count; i++) {
if (fd->_ctx[i].key) {
xl = (xlator_t *)(long)fd->_ctx[i].key;
+ old_THIS = THIS;
+ THIS = xl;
if (xl->cbks->release)
xl->cbks->release (xl, fd);
+ THIS = old_THIS;
}
}
}