diff options
author | Anand Avati <avati@gluster.com> | 2009-10-13 06:42:15 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-10-13 05:46:47 -0700 |
commit | f085beebd03b2c8be2fa57039ad3cbcb6eaa66d3 (patch) | |
tree | 509511c56cf3c9f96b59f959f29817c86841643a /xlators/cluster/afr/src/afr.c | |
parent | b20cee457232a88517af44ae4505361dd3a4de15 (diff) |
prevent spurious unlocks from afr selfheal
afr selfheal now remembers all the nodes on which locks were successfully
held and sends unlocks only to those nodes
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 112 (parallel deletion of files mounted by different clients on the same back-end hangs and/or does not completely delete)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=112
Diffstat (limited to 'xlators/cluster/afr/src/afr.c')
-rw-r--r-- | xlators/cluster/afr/src/afr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xlators/cluster/afr/src/afr.c b/xlators/cluster/afr/src/afr.c index 429ab97c5c4..eea030ad112 100644 --- a/xlators/cluster/afr/src/afr.c +++ b/xlators/cluster/afr/src/afr.c @@ -216,6 +216,9 @@ afr_local_sh_cleanup (afr_local_t *local, xlator_t *this) if (sh->success) FREE (sh->success); + if (sh->locked_nodes) + FREE (sh->locked_nodes); + if (sh->healing_fd) { fd_unref (sh->healing_fd); sh->healing_fd = NULL; |