summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xlators/cluster/afr/src/afr-common.c13
-rw-r--r--xlators/cluster/afr/src/afr-inode-read.c6
-rw-r--r--xlators/cluster/afr/src/afr-inode-write.c14
3 files changed, 19 insertions, 14 deletions
diff --git a/xlators/cluster/afr/src/afr-common.c b/xlators/cluster/afr/src/afr-common.c
index 27403eaa58b..f33e00a76a0 100644
--- a/xlators/cluster/afr/src/afr-common.c
+++ b/xlators/cluster/afr/src/afr-common.c
@@ -474,8 +474,9 @@ afr_spb_choice_timeout_cancel (xlator_t *this, inode_t *inode)
{
__afr_inode_ctx_get (this, inode, &ctx);
if (!ctx) {
- gf_log (this->name, GF_LOG_WARNING, "Failed to cancel"
- " split-brain choice timer.");
+ gf_msg (this->name, GF_LOG_WARNING, 0,
+ AFR_MSG_SPLIT_BRAIN_CHOICE_ERROR,
+ "Failed to cancel split-brain choice timer.");
goto out;
}
ctx->spb_choice = -1;
@@ -530,7 +531,8 @@ afr_set_split_brain_choice (int ret, call_frame_t *frame, void *opaque)
goto out;
if (!(data->d_spb || data->m_spb)) {
- gf_log (this->name, GF_LOG_WARNING, "Cannot set "
+ gf_msg (this->name, GF_LOG_WARNING, 0,
+ AFR_MSG_SPLIT_BRAIN_CHOICE_ERROR, "Cannot set "
"replica.split-brain-choice on %s. File is"
" not in data/metadata split-brain.",
uuid_utoa (loc->gfid));
@@ -543,8 +545,9 @@ afr_set_split_brain_choice (int ret, call_frame_t *frame, void *opaque)
{
ret = __afr_inode_ctx_get (this, inode, &ctx);
if (ret) {
- gf_log (this->name, GF_LOG_ERROR, "Failed to get"
- "inode_ctx for %s", loc->name);
+ gf_msg (this->name, GF_LOG_ERROR, 0,
+ AFR_MSG_SPLIT_BRAIN_CHOICE_ERROR,
+ "Failed to get inode_ctx for %s", loc->name);
goto unlock;
}
diff --git a/xlators/cluster/afr/src/afr-inode-read.c b/xlators/cluster/afr/src/afr-inode-read.c
index 234f1d0c918..7fd37aee341 100644
--- a/xlators/cluster/afr/src/afr-inode-read.c
+++ b/xlators/cluster/afr/src/afr-inode-read.c
@@ -735,9 +735,9 @@ afr_getxattr_node_uuid_cbk (call_frame_t *frame, void *cookie,
if (++curr_call_child == priv->child_count)
goto unwind;
- gf_log (this->name, GF_LOG_WARNING,
- "op_ret (-1): Re-querying afr-child (%d/%d)",
- curr_call_child, priv->child_count);
+ gf_msg_debug (this->name, op_errno,
+ "op_ret (-1): Re-querying afr-child (%d/%d)",
+ curr_call_child, priv->child_count);
unwind = 0;
STACK_WIND_COOKIE (frame, afr_getxattr_node_uuid_cbk,
diff --git a/xlators/cluster/afr/src/afr-inode-write.c b/xlators/cluster/afr/src/afr-inode-write.c
index 297d7b8b0dd..6b9d5ee87b0 100644
--- a/xlators/cluster/afr/src/afr-inode-write.c
+++ b/xlators/cluster/afr/src/afr-inode-write.c
@@ -1111,7 +1111,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;
@@ -1169,8 +1170,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);
@@ -1420,9 +1421,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;
}