summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPranith Kumar K <pkarampu@redhat.com>2015-06-02 16:39:35 +0530
committerRaghavendra G <rgowdapp@redhat.com>2015-10-05 23:11:02 -0700
commitc3dd76e9da783d879258cde17680f7d8747506f8 (patch)
treea839bcfd5de5375f83f9bad5bb8f8f316ebe5a3d
parentdf06d94fae1e4a5e93f00c26d4b377bd8d1bd352 (diff)
fd: Do fd_bind on successful open
- fd_unref should decrement fd->inode->fd_count only if it is present in the inode's fd list. - successful open/opendir should perform fd_bind. >Change-Id: I81dd04f330e2fee86369a6dc7147af44f3d49169 >BUG: 1207735 >Signed-off-by: Pranith Kumar K <pkarampu@redhat.com> >Reviewed-on: http://review.gluster.org/11044 >Reviewed-by: Anoop C S <anoopcs@redhat.com> >Tested-by: NetBSD Build System <jenkins@build.gluster.org> >Tested-by: Gluster Build System <jenkins@build.gluster.com> >Reviewed-by: Raghavendra G <rgowdapp@redhat.com> BUG: 1259697 Change-Id: I73b79dd3519aa085fb84dde74b321511cbccce1a Signed-off-by: Pranith Kumar K <pkarampu@redhat.com> Reviewed-on: http://review.gluster.org/12100 Tested-by: Gluster Build System <jenkins@build.gluster.com> Tested-by: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: Raghavendra G <rgowdapp@redhat.com>
-rw-r--r--libglusterfs/src/fd.c27
-rw-r--r--libglusterfs/src/syncop-utils.c2
-rw-r--r--xlators/cluster/dht/src/dht-common.c1
-rw-r--r--xlators/cluster/dht/src/dht-rebalance.c4
-rw-r--r--xlators/cluster/dht/src/dht-rename.c1
-rw-r--r--xlators/cluster/ec/src/ec-inode-write.c1
-rw-r--r--xlators/encryption/crypt/src/crypt.c11
-rw-r--r--xlators/features/marker/src/marker-quota.c5
-rw-r--r--xlators/features/trash/src/trash.c3
9 files changed, 41 insertions, 14 deletions
diff --git a/libglusterfs/src/fd.c b/libglusterfs/src/fd.c
index 25cea496d73..d4a6e6a40bb 100644
--- a/libglusterfs/src/fd.c
+++ b/libglusterfs/src/fd.c
@@ -474,16 +474,12 @@ __fd_unref (fd_t *fd)
--fd->refcount;
- if (fd->refcount == 0) {
- list_del_init (&fd->inode_list);
- }
-
return fd;
}
static void
-fd_destroy (fd_t *fd)
+fd_destroy (fd_t *fd, gf_boolean_t bound)
{
xlator_t *xl = NULL;
int i = 0;
@@ -531,11 +527,14 @@ fd_destroy (fd_t *fd)
LOCK_DESTROY (&fd->lock);
GF_FREE (fd->_ctx);
- LOCK (&fd->inode->lock);
- {
- fd->inode->fd_count--;
+ if (bound) {
+ /*Decrease the count only after close happens on file*/
+ LOCK (&fd->inode->lock);
+ {
+ fd->inode->fd_count--;
+ }
+ UNLOCK (&fd->inode->lock);
}
- UNLOCK (&fd->inode->lock);
inode_unref (fd->inode);
fd->inode = NULL;
fd_lk_ctx_unref (fd->lk_ctx);
@@ -549,6 +548,7 @@ void
fd_unref (fd_t *fd)
{
int32_t refcount = 0;
+ gf_boolean_t bound = _gf_false;
if (!fd) {
gf_msg_callingfn ("fd", GF_LOG_ERROR, EINVAL,
@@ -560,11 +560,18 @@ fd_unref (fd_t *fd)
{
__fd_unref (fd);
refcount = fd->refcount;
+ if (refcount == 0) {
+ if (!list_empty (&fd->inode_list)) {
+ list_del_init (&fd->inode_list);
+ bound = _gf_true;
+ }
+ }
+
}
UNLOCK (&fd->inode->lock);
if (refcount == 0) {
- fd_destroy (fd);
+ fd_destroy (fd, bound);
}
return ;
diff --git a/libglusterfs/src/syncop-utils.c b/libglusterfs/src/syncop-utils.c
index 8ab6befe652..16ae1f7d74d 100644
--- a/libglusterfs/src/syncop-utils.c
+++ b/libglusterfs/src/syncop-utils.c
@@ -64,6 +64,8 @@ syncop_dirfd (xlator_t *subvol, loc_t *loc, fd_t **fd, int pid)
uuid_utoa (loc->gfid));
goto out;
#endif /* GF_LINUX_HOST_OS */
+ } else {
+ fd_bind (dirfd);
}
out:
if (ret == 0)
diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c
index 4f84507162b..cd991f6871f 100644
--- a/xlators/cluster/dht/src/dht-common.c
+++ b/xlators/cluster/dht/src/dht-common.c
@@ -7265,6 +7265,7 @@ dht_rmdir_opendir_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
if (local->op_ret == -1)
goto err;
+ fd_bind (fd);
dict = dict_new ();
if (!dict) {
local->op_ret = -1;
diff --git a/xlators/cluster/dht/src/dht-rebalance.c b/xlators/cluster/dht/src/dht-rebalance.c
index f99d19f3d69..b817c57f90c 100644
--- a/xlators/cluster/dht/src/dht-rebalance.c
+++ b/xlators/cluster/dht/src/dht-rebalance.c
@@ -509,6 +509,7 @@ __dht_rebalance_create_dst_file (xlator_t *to, xlator_t *from, loc_t *loc, struc
}
+ fd_bind (fd);
/*Reason of doing lookup after create again:
*In the create, there is some time-gap between opening fd at the
*server (posix_layer) and binding it in server (incrementing fd count),
@@ -782,6 +783,7 @@ __dht_rebalance_open_src_file (xlator_t *from, xlator_t *to, loc_t *loc,
goto out;
}
+ fd_bind (fd);
ret = -1;
dict = dict_new ();
if (!dict)
@@ -2281,6 +2283,7 @@ gf_defrag_process_dir (xlator_t *this, gf_defrag_info_t *defrag, loc_t *loc,
goto out;
}
+ fd_bind (fd);
dir_dfmeta = GF_CALLOC (1, sizeof (*dir_dfmeta),
gf_common_mt_pointer);
if (!dir_dfmeta) {
@@ -2581,6 +2584,7 @@ gf_defrag_fix_layout (xlator_t *this, gf_defrag_info_t *defrag, loc_t *loc,
goto out;
}
+ fd_bind (fd);
INIT_LIST_HEAD (&entries.list);
while ((ret = syncop_readdirp (this, fd, 131072, offset, &entries,
NULL, NULL)) != 0)
diff --git a/xlators/cluster/dht/src/dht-rename.c b/xlators/cluster/dht/src/dht-rename.c
index 320f8759719..5b8d91d501c 100644
--- a/xlators/cluster/dht/src/dht-rename.c
+++ b/xlators/cluster/dht/src/dht-rename.c
@@ -249,6 +249,7 @@ dht_rename_opendir_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
goto err;
}
+ fd_bind (fd);
STACK_WIND (frame, dht_rename_readdir_cbk,
prev->this, prev->this->fops->readdir,
local->fd, 4096, 0, NULL);
diff --git a/xlators/cluster/ec/src/ec-inode-write.c b/xlators/cluster/ec/src/ec-inode-write.c
index e43313012b3..50d71082fad 100644
--- a/xlators/cluster/ec/src/ec-inode-write.c
+++ b/xlators/cluster/ec/src/ec-inode-write.c
@@ -881,6 +881,7 @@ int32_t ec_truncate_open_cbk(call_frame_t * frame, void * cookie,
int32_t err;
if (op_ret >= 0) {
+ fd_bind (fd);
err = ec_truncate_write(fop->parent, fop->answer->mask);
if (err != 0) {
fop->error = -err;
diff --git a/xlators/encryption/crypt/src/crypt.c b/xlators/encryption/crypt/src/crypt.c
index 5387f84303c..57ae72731ba 100644
--- a/xlators/encryption/crypt/src/crypt.c
+++ b/xlators/encryption/crypt/src/crypt.c
@@ -1833,7 +1833,9 @@ static int32_t truncate_begin(call_frame_t *frame,
op_ret,
op_errno, NULL, NULL, NULL);
return 0;
- }
+ } else {
+ fd_bind (fd);
+ }
/*
* crypt_truncate() is implemented via crypt_ftruncate(),
* so the crypt xlator does STACK_WIND to itself here
@@ -3095,7 +3097,7 @@ static int32_t do_linkop(call_frame_t *frame,
&lock,
NULL);
return 0;
- error:
+ error:
unwind_fn(frame);
return 0;
}
@@ -3125,11 +3127,14 @@ static int32_t linkop_begin(call_frame_t *frame,
unwind_fn = linkop_unwind_dispatch(local->fop);
mop = linkop_mtdop_dispatch(local->fop);
- if (op_ret < 0)
+ if (op_ret < 0) {
/*
* verification failed
*/
goto error;
+ } else {
+ fd_bind (fd);
+ }
old_mtd = dict_get(xdata, CRYPTO_FORMAT_PREFIX);
if (!old_mtd) {
diff --git a/xlators/features/marker/src/marker-quota.c b/xlators/features/marker/src/marker-quota.c
index 167d2dcb59d..7d5bdd847b0 100644
--- a/xlators/features/marker/src/marker-quota.c
+++ b/xlators/features/marker/src/marker-quota.c
@@ -776,8 +776,10 @@ mq_dirty_inode_readdir (call_frame_t *frame,
return 0;
}
- if (local->fd == NULL)
+ if (local->fd == NULL) {
+ fd_bind (fd);
local->fd = fd_ref (fd);
+ }
STACK_WIND (frame,
mq_readdir_cbk,
@@ -3576,6 +3578,7 @@ mq_update_dirty_inode_task (void *opaque)
goto out;
}
+ fd_bind (fd);
INIT_LIST_HEAD (&entries.list);
while ((ret = syncop_readdirp (this, fd, 131072, offset, &entries,
NULL, NULL)) != 0) {
diff --git a/xlators/features/trash/src/trash.c b/xlators/features/trash/src/trash.c
index dafeb183f87..ab008651e1a 100644
--- a/xlators/features/trash/src/trash.c
+++ b/xlators/features/trash/src/trash.c
@@ -1244,6 +1244,8 @@ trash_truncate_open_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
goto out;
}
+ fd_bind (fd);
+
local->cur_offset = 0;
STACK_WIND (frame, trash_truncate_readv_cbk,
@@ -1333,6 +1335,7 @@ trash_truncate_create_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
goto out;
}
+ fd_bind (fd);
flags = O_RDONLY;
/* fd which represents source file for reading and writing from it */