diff options
Diffstat (limited to 'xlators/cluster/afr/src')
| -rw-r--r-- | xlators/cluster/afr/src/afr-common.c | 6 | ||||
| -rw-r--r-- | xlators/cluster/afr/src/afr-inode-write.c | 2 | ||||
| -rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-common.c | 2 | ||||
| -rw-r--r-- | xlators/cluster/afr/src/afr-self-heald.c | 4 | 
4 files changed, 7 insertions, 7 deletions
diff --git a/xlators/cluster/afr/src/afr-common.c b/xlators/cluster/afr/src/afr-common.c index ccdaaaaf052..96ed41d3abf 100644 --- a/xlators/cluster/afr/src/afr-common.c +++ b/xlators/cluster/afr/src/afr-common.c @@ -839,7 +839,7 @@ afr_inode_refresh_done (call_frame_t *frame, xlator_t *this)  	if (ret && afr_selfheal_enabled (this)) {  		heal = copy_frame (frame);  		if (heal) -			heal->root->pid = GF_CLIENT_PID_AFR_SELF_HEALD; +			heal->root->pid = GF_CLIENT_PID_SELF_HEALD;  		ret = synctask_new (this->ctx->env, afr_refresh_selfheal_wrap,  				    afr_refresh_selfheal_done, heal, frame);  		if (ret) @@ -2033,7 +2033,7 @@ afr_lookup_metadata_heal_check (call_frame_t *frame, xlator_t *this)          heal = copy_frame (frame);          if (heal) -                heal->root->pid = GF_CLIENT_PID_AFR_SELF_HEALD; +                heal->root->pid = GF_CLIENT_PID_SELF_HEALD;          ret = synctask_new (this->ctx->env, afr_lookup_sh_metadata_wrap,                              afr_refresh_selfheal_done, heal, frame);          if(ret) @@ -2121,7 +2121,7 @@ afr_lookup_entry_heal (call_frame_t *frame, xlator_t *this)  	if (need_heal) {  		heal = copy_frame (frame);  		if (heal) -			heal->root->pid = GF_CLIENT_PID_AFR_SELF_HEALD; +			heal->root->pid = GF_CLIENT_PID_SELF_HEALD;  		ret = synctask_new (this->ctx->env, afr_lookup_selfheal_wrap,  				    afr_refresh_selfheal_done, heal, frame);  		if (ret) diff --git a/xlators/cluster/afr/src/afr-inode-write.c b/xlators/cluster/afr/src/afr-inode-write.c index d800a3476d0..88f885d3422 100644 --- a/xlators/cluster/afr/src/afr-inode-write.c +++ b/xlators/cluster/afr/src/afr-inode-write.c @@ -1424,7 +1424,7 @@ afr_handle_replace_brick (xlator_t *this, call_frame_t *frame, loc_t *loc,          ret =  dict_get_str (dict, GF_AFR_REPLACE_BRICK, &replace_brick);          if (!ret) { -                if (frame->root->pid != GF_CLIENT_PID_AFR_SELF_HEALD) { +                if (frame->root->pid != GF_CLIENT_PID_SELF_HEALD) {                          gf_log (this->name, GF_LOG_ERROR, "'%s' is an internal"                                  " extended attribute : %s.",                                  GF_AFR_REPLACE_BRICK, strerror (EPERM)); diff --git a/xlators/cluster/afr/src/afr-self-heal-common.c b/xlators/cluster/afr/src/afr-self-heal-common.c index 651c7ee3326..6e90de039ce 100644 --- a/xlators/cluster/afr/src/afr-self-heal-common.c +++ b/xlators/cluster/afr/src/afr-self-heal-common.c @@ -1281,7 +1281,7 @@ afr_frame_create (xlator_t *this)  	call_frame_t *frame    = NULL;  	afr_local_t  *local    = NULL;  	int           op_errno = 0; -	pid_t         pid      = GF_CLIENT_PID_AFR_SELF_HEALD; +	pid_t         pid      = GF_CLIENT_PID_SELF_HEALD;  	frame = create_frame (this, this->ctx->pool);  	if (!frame) diff --git a/xlators/cluster/afr/src/afr-self-heald.c b/xlators/cluster/afr/src/afr-self-heald.c index 9b8b8e85f2b..d77a9ec549e 100644 --- a/xlators/cluster/afr/src/afr-self-heald.c +++ b/xlators/cluster/afr/src/afr-self-heald.c @@ -446,7 +446,7 @@ afr_shd_index_sweep (struct subvol_healer *healer, char *vgfid)  		return -errno;  	} -        ret = syncop_dir_scan (subvol, &loc, GF_CLIENT_PID_AFR_SELF_HEALD, +        ret = syncop_dir_scan (subvol, &loc, GF_CLIENT_PID_SELF_HEALD,                                 healer, afr_shd_index_heal);          inode_forget (loc.inode, 1); @@ -510,7 +510,7 @@ afr_shd_full_sweep (struct subvol_healer *healer, inode_t *inode)          priv = healer->this->private;          loc.inode = inode;          return syncop_ftw (priv->children[healer->subvol], &loc, -                           GF_CLIENT_PID_AFR_SELF_HEALD, healer, +                           GF_CLIENT_PID_SELF_HEALD, healer,                             afr_shd_full_heal);  }  | 
