diff options
| -rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-common.c | 24 | 
1 files changed, 16 insertions, 8 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heal-common.c b/xlators/cluster/afr/src/afr-self-heal-common.c index 99e6503ac3a..38fe1e6e7f3 100644 --- a/xlators/cluster/afr/src/afr-self-heal-common.c +++ b/xlators/cluster/afr/src/afr-self-heal-common.c @@ -980,14 +980,22 @@ sh_missing_entries_mkdir (call_frame_t *frame, xlator_t *this)  	for (i = 0; i < priv->child_count; i++) {  		if (sh->child_errno[i] == ENOENT) { -			STACK_WIND_COOKIE (frame, -					   sh_missing_entries_newentry_cbk, -					   (void *) (long) i, -					   priv->children[i], -					   priv->children[i]->fops->mkdir, -					   &local->loc, st_mode); -			if (!--call_count) -				break; +                        if (!strcmp (local->loc.path, "/")) { +                                /* We shouldn't try to create "/" */ + +                                sh_missing_entries_finish (frame, this); + +                                return 0; +                        } else { +                                STACK_WIND_COOKIE (frame, +                                                   sh_missing_entries_newentry_cbk, +                                                   (void *) (long) i, +                                                   priv->children[i], +                                                   priv->children[i]->fops->mkdir, +                                                   &local->loc, st_mode); +                                if (!--call_count) +                                        break; +                        }  		}  	}  | 
