From ebd51f143ed62d3d35b674e3dc639b1951322ec6 Mon Sep 17 00:00:00 2001 From: Anuradha Talur Date: Wed, 4 May 2016 11:55:43 +0530 Subject: heal: Fix incorrect heal info output Backport of: http://review.gluster.org/14199 Problem: In heterogenous clusters, heal info gives incorrect outout as "Failed to process entries completely. Number of entries so far: 0". This happens when the getxattr on virtual xattr for /.glusterfs/indices/dirty fails on older bricks as they do not recognize the xattr. Fix: Ignore that error so that heal info doesn't incorrectly report failure. >BUG: 1332798 >Signed-off-by: Anuradha Talur >Reviewed-on: http://review.gluster.org/14199 >Reviewed-by: Pranith Kumar Karampuri >Tested-by: Pranith Kumar Karampuri >Smoke: Gluster Build System >NetBSD-regression: NetBSD Build System >CentOS-regression: Gluster Build System >Signed-off-by: Anuradha Talur Change-Id: I0d3541ed0594d67c3c3b8568a89a975a100bf6dd BUG: 1333239 Signed-off-by: Anuradha Talur Reviewed-on: http://review.gluster.org/14217 Reviewed-by: Pranith Kumar Karampuri Tested-by: Pranith Kumar Karampuri Smoke: Gluster Build System NetBSD-regression: NetBSD Build System CentOS-regression: Gluster Build System --- heal/src/glfs-heal.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'heal') diff --git a/heal/src/glfs-heal.c b/heal/src/glfs-heal.c index 4f636c6a54e..19bf4175cff 100644 --- a/heal/src/glfs-heal.c +++ b/heal/src/glfs-heal.c @@ -457,7 +457,8 @@ glfsh_print_pending_heals_type (glfs_t *fs, xlator_t *top_subvol, loc_t *rootloc ret = glfsh_get_index_dir_loc (rootloc, xl, &dirloc, &op_errno, vgfid); if (ret < 0) { - if (op_errno == ESTALE || op_errno == ENOENT) + if (op_errno == ESTALE || op_errno == ENOENT || + op_errno == ENOTSUP) ret = 0; else ret = -op_errno; -- cgit