From 7223062cdc1934a6694265cfd73b9cc5a8c4f377 Mon Sep 17 00:00:00 2001 From: Ashish Pandey Date: Mon, 12 Oct 2015 13:14:08 +0530 Subject: cluster/afr : Remove stale indices Change-Id: Iba23338a452b49dc9fe6ae7b4ca108ebc377fe42 BUG: 1283036 Signed-off-by: Ashish Pandey Reviewed-on: http://review.gluster.org/12336 Tested-by: Gluster Build System Reviewed-by: Pranith Kumar Karampuri Reviewed-on: http://review.gluster.org/12604 Tested-by: NetBSD Build System --- xlators/cluster/afr/src/afr-self-heal-common.c | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) (limited to 'xlators') diff --git a/xlators/cluster/afr/src/afr-self-heal-common.c b/xlators/cluster/afr/src/afr-self-heal-common.c index f4896f125d4..651c7ee3326 100644 --- a/xlators/cluster/afr/src/afr-self-heal-common.c +++ b/xlators/cluster/afr/src/afr-self-heal-common.c @@ -59,6 +59,27 @@ afr_selfheal_post_op (call_frame_t *frame, xlator_t *this, inode_t *inode, return 0; } +int +afr_check_stale_error (struct afr_reply *replies, afr_private_t *priv) +{ + int i = 0; + int op_errno = 0; + int tmp_errno = 0; + int stale_count = 0; + + for (i = 0; i < priv->child_count; i++) { + tmp_errno = replies[i].op_errno; + if (tmp_errno == ENOENT || tmp_errno == ESTALE) { + op_errno = afr_higher_errno (op_errno, tmp_errno); + stale_count++; + } + } + if (stale_count != priv->child_count) + return -ENOTCONN; + else + return -op_errno; +} + dict_t * afr_selfheal_output_xattr (xlator_t *this, afr_transaction_type type, @@ -1215,7 +1236,7 @@ afr_selfheal_unlocked_inspect (call_frame_t *frame, xlator_t *this, goto out; } } else if (valid_cnt < 2) { - ret = -ENOTCONN; + ret = afr_check_stale_error (replies, priv); goto out; } -- cgit