diff options
Diffstat (limited to 'xlators/cluster/afr/src/afr-self-heald.c')
-rw-r--r-- | xlators/cluster/afr/src/afr-self-heald.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heald.c b/xlators/cluster/afr/src/afr-self-heald.c index 787cb4ff557..0ff4c0cb1fc 100644 --- a/xlators/cluster/afr/src/afr-self-heald.c +++ b/xlators/cluster/afr/src/afr-self-heald.c @@ -303,6 +303,11 @@ afr_shd_selfheal (struct subvol_healer *healer, int child, uuid_t gfid) subvol = priv->children[child]; + //If this fails with ENOENT/ESTALE index is stale + ret = afr_shd_gfid_to_path (this, subvol, gfid, &path); + if (ret < 0) + return ret; + ret = afr_selfheal (this, gfid); if (ret == -EIO) { @@ -316,10 +321,6 @@ afr_shd_selfheal (struct subvol_healer *healer, int child, uuid_t gfid) crawl_event->healed_count++; } - afr_shd_gfid_to_path (this, subvol, gfid, &path); - if (!path) - return ret; - if (eh) { shd_event = GF_CALLOC (1, sizeof(*shd_event), gf_afr_mt_shd_event_t); @@ -334,6 +335,7 @@ afr_shd_selfheal (struct subvol_healer *healer, int child, uuid_t gfid) if (eh_save_history (eh, shd_event) < 0) { GF_FREE (shd_event); GF_FREE (path); + return ret; } } return ret; |