diff options
| author | Pranith Kumar K <pranithk@gluster.com> | 2012-03-01 12:34:56 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vijay@gluster.com> | 2012-03-05 10:36:01 -0800 | 
| commit | 0783ca994d9ea95fd9ab3dd95d6407918f19f255 (patch) | |
| tree | 38085f4c9dc85a2dcadd909441793d208ffcf9f8 /xlators/cluster | |
| parent | 5d813bb5fa005d15de47ba0cde0af7bda6bd9995 (diff) | |
cluster/afr: Reset re-usable sh args in sh_*_done
The bug is observed due to stale value of active_sink count
set in metadata self-heal.
Change-Id: I41996999213c323c0f4d4db575d87b2d0b4b3fec
BUG: 798874
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Reviewed-on: http://review.gluster.com/2849
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'xlators/cluster')
| -rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-common.c | 41 | ||||
| -rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-common.h | 2 | ||||
| -rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-entry.c | 4 | ||||
| -rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-metadata.c | 8 | 
4 files changed, 28 insertions, 27 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heal-common.c b/xlators/cluster/afr/src/afr-self-heal-common.c index de89f88cf12..f4f74940cff 100644 --- a/xlators/cluster/afr/src/afr-self-heal-common.c +++ b/xlators/cluster/afr/src/afr-self-heal-common.c @@ -27,6 +27,30 @@  #include "afr-self-heal.h"  #include "pump.h" +void +afr_sh_reset (call_frame_t *frame, xlator_t *this) +{ +        afr_local_t     *local = NULL; +        afr_self_heal_t *sh = NULL; +        afr_private_t   *priv = NULL; + +        local = frame->local; +        sh = &local->self_heal; +        priv = this->private; + +        memset (sh->child_errno, 0, +                sizeof (*sh->child_errno) * priv->child_count); +        memset (sh->buf, 0, sizeof (*sh->buf) * priv->child_count); +        memset (sh->parentbufs, 0, +                sizeof (*sh->parentbufs) * priv->child_count); +        memset (sh->success, 0, sizeof (*sh->success) * priv->child_count); +        memset (sh->locked_nodes, 0, +                sizeof (*sh->locked_nodes) * priv->child_count); +        sh->active_sinks = 0; + +        afr_reset_xattr (sh->xattr, priv->child_count); +} +  //Intersection[child]=1 if child is part of intersection  void  afr_children_intersection_get (int32_t *set1, int32_t *set2, @@ -882,26 +906,11 @@ afr_sh_missing_entries_done (call_frame_t *frame, xlator_t *this)  {          afr_local_t     *local = NULL;          afr_self_heal_t *sh = NULL; -        afr_private_t   *priv = NULL; -        int              i = 0;          local = frame->local;          sh = &local->self_heal; -        priv = this->private; - -//      memset (sh->child_errno, 0, sizeof (int) * priv->child_count); -        memset (sh->buf, 0, sizeof (struct iatt) * priv->child_count); - -        for (i = 0; i < priv->child_count; i++) { -                sh->locked_nodes[i] = 0; -        } - -        for (i = 0; i < priv->child_count; i++) { -                if (sh->xattr[i]) -                        dict_unref (sh->xattr[i]); -                sh->xattr[i] = NULL; -        } +        afr_sh_reset (frame, this);          if (local->govinda_gOvinda || sh->op_failed) {                  gf_log (this->name, GF_LOG_INFO,                          "split brain found, aborting selfheal of %s", diff --git a/xlators/cluster/afr/src/afr-self-heal-common.h b/xlators/cluster/afr/src/afr-self-heal-common.h index 715ed3dc195..f1022cea83e 100644 --- a/xlators/cluster/afr/src/afr-self-heal-common.h +++ b/xlators/cluster/afr/src/afr-self-heal-common.h @@ -124,4 +124,6 @@ afr_build_child_loc (xlator_t *this, loc_t *child, loc_t *parent, char *name);  int  afr_impunge_frame_create (call_frame_t *frame, xlator_t *this,                            int active_source, call_frame_t **impunge_frame); +void +afr_sh_reset (call_frame_t *frame, xlator_t *this);  #endif /* __AFR_SELF_HEAL_COMMON_H__ */ diff --git a/xlators/cluster/afr/src/afr-self-heal-entry.c b/xlators/cluster/afr/src/afr-self-heal-entry.c index 7cba96f06e1..3aefd3b371e 100644 --- a/xlators/cluster/afr/src/afr-self-heal-entry.c +++ b/xlators/cluster/afr/src/afr-self-heal-entry.c @@ -70,10 +70,6 @@ afr_sh_entry_done (call_frame_t *frame, xlator_t *this)          local = frame->local;          sh = &local->self_heal; -        if (sh->healing_fd) -                fd_unref (sh->healing_fd); -        sh->healing_fd = NULL; -          sh->completion_cbk (frame, this);          return 0; diff --git a/xlators/cluster/afr/src/afr-self-heal-metadata.c b/xlators/cluster/afr/src/afr-self-heal-metadata.c index 148e858bd26..d0bf382a47a 100644 --- a/xlators/cluster/afr/src/afr-self-heal-metadata.c +++ b/xlators/cluster/afr/src/afr-self-heal-metadata.c @@ -54,17 +54,11 @@ afr_sh_metadata_done (call_frame_t *frame, xlator_t *this)  {          afr_local_t     *local = NULL;          afr_self_heal_t *sh = NULL; -        afr_private_t   *priv = NULL;          local = frame->local;          sh = &local->self_heal; -        priv = this->private; - -//      memset (sh->child_errno, 0, sizeof (int) * priv->child_count); -        memset (sh->buf, 0, sizeof (struct iatt) * priv->child_count); -        memset (sh->success, 0, sizeof (*sh->success) * priv->child_count); -        afr_reset_xattr (sh->xattr, priv->child_count); +        afr_sh_reset (frame, this);          if (local->govinda_gOvinda) {                  gf_log (this->name, GF_LOG_INFO,                          "split-brain detected, aborting selfheal of %s",  | 
