diff options
author | Pranith Kumar K <pranithk@gluster.com> | 2012-03-13 11:15:36 +0530 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2012-03-13 03:51:46 -0700 |
commit | 5ce988633d51ff10f24c03a0e4d3c7c101e43af5 (patch) | |
tree | b0638d099d8ff962e5e57547cc1683ec481dc005 /xlators/cluster/afr/src/afr-self-heal-data.c | |
parent | dda1b36b3be97170224c8f4e4f25a1362d288f02 (diff) |
cluster/afr: Handle files w.o. xattrs and size mismatch.v3.2.6p2
Change-Id: I31458538c738c85a026994584c937c99538fe069
BUG: 802637
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Reviewed-on: http://review.gluster.com/2932
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr-self-heal-data.c')
-rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-data.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heal-data.c b/xlators/cluster/afr/src/afr-self-heal-data.c index 7d2c86eedae..7e97cf8cb42 100644 --- a/xlators/cluster/afr/src/afr-self-heal-data.c +++ b/xlators/cluster/afr/src/afr-self-heal-data.c @@ -812,9 +812,17 @@ afr_lookup_select_read_child_by_txn_type (xlator_t *this, afr_local_t *local, nsources = afr_build_sources (this, xattr, bufs, pending_matrix, sources, success_children, txn_type, &subvol_status, _gf_false); - if (subvol_status & SPLIT_BRAIN) + if (subvol_status & SPLIT_BRAIN) { gf_log (this->name, GF_LOG_WARNING, "%s: Possible split-brain", local->loc.path); + if (txn_type == AFR_DATA_TRANSACTION) { + //succeed lookup fail open + afr_set_split_brain (this, local->cont.lookup.inode, + _gf_true); + nsources = 1; + sources[success_children[0]] = 1; + } + } if (nsources < 0) { ret = -1; goto out; |