summaryrefslogtreecommitdiffstats
path: root/xlators/cluster/afr/src/afr-inode-write.c
diff options
context:
space:
mode:
authorPranith Kumar K <pkarampu@redhat.com>2016-01-08 13:06:27 +0530
committerPranith Kumar Karampuri <pkarampu@redhat.com>2016-03-06 23:19:26 -0800
commit7d94b3a9333c3f85a67e5d6d09baa12f1cf54e85 (patch)
treec11df2c0a44c5a6681c2d148d9971113d80dbd32 /xlators/cluster/afr/src/afr-inode-write.c
parent4db07c413c9517d5c83499e599be18b3162f5343 (diff)
cluster/afr: Move remaining gf_logs to gf_msgs
>Change-Id: I48d9e5313bd3ccf9fe26c90a7051a8a174d75c49 >BUG: 1296818 >Signed-off-by: Pranith Kumar K <pkarampu@redhat.com> >Reviewed-on: http://review.gluster.org/13195 >Reviewed-by: Krutika Dhananjay <kdhananj@redhat.com> >Smoke: Gluster Build System <jenkins@build.gluster.com> >NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> >CentOS-regression: Gluster Build System <jenkins@build.gluster.com> >Reviewed-by: Vijay Bellur <vbellur@redhat.com> BUG: 1315142 Change-Id: Iab55c3fd41777e9fe295f674c3ee410fd780b418 Signed-off-by: Pranith Kumar K <pkarampu@redhat.com> Reviewed-on: http://review.gluster.org/13617 Smoke: Gluster Build System <jenkins@build.gluster.com> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Krutika Dhananjay <kdhananj@redhat.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr-inode-write.c')
-rw-r--r--xlators/cluster/afr/src/afr-inode-write.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/xlators/cluster/afr/src/afr-inode-write.c b/xlators/cluster/afr/src/afr-inode-write.c
index 88f885d3422..8069d6cc3b3 100644
--- a/xlators/cluster/afr/src/afr-inode-write.c
+++ b/xlators/cluster/afr/src/afr-inode-write.c
@@ -1116,7 +1116,8 @@ _afr_handle_replace_brick_type (xlator_t *this, call_frame_t *frame,
}
if (!count) {
- gf_log (this->name, GF_LOG_ERROR, "Couldn't acquire lock on"
+ gf_msg (this->name, GF_LOG_ERROR, EAGAIN,
+ AFR_MSG_REPLACE_BRICK_STATUS, "Couldn't acquire lock on"
" any child.");
ret = -EAGAIN;
goto unlock;
@@ -1174,8 +1175,8 @@ _afr_handle_replace_brick (void *opaque)
loc_copy (&local->loc, &data->loc);
- gf_log (this->name, GF_LOG_DEBUG, "Child being replaced is : %s",
- priv->children[rb_index]->name);
+ gf_msg_debug (this->name, 0, "Child being replaced is : %s",
+ priv->children[rb_index]->name);
ret = _afr_handle_replace_brick_type (this, frame, &local->loc, rb_index,
AFR_METADATA_TRANSACTION);
@@ -1425,9 +1426,10 @@ afr_handle_replace_brick (xlator_t *this, call_frame_t *frame, loc_t *loc,
if (!ret) {
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));
+ gf_msg (this->name, GF_LOG_ERROR, EPERM,
+ AFR_MSG_REPLACE_BRICK_STATUS, "'%s' is an "
+ "internal extended attribute",
+ GF_AFR_REPLACE_BRICK);
ret = 1;
goto out;
}