diff options
| author | arao <arao@redhat.com> | 2015-03-06 12:33:05 +0530 | 
|---|---|---|
| committer | Pranith Kumar Karampuri <pkarampu@redhat.com> | 2015-06-27 05:25:05 -0700 | 
| commit | 58a736111fa1db4f10c6646e81066434260f674f (patch) | |
| tree | 98b40c45c6510c0ca9a9a33062b46b0411815556 /xlators/cluster/afr/src/afr-inode-write.c | |
| parent | 7a3736b4a46dd07d65e27d892a85299a37fdd9a2 (diff) | |
afr: Porting messages to new logging framework
     updated
Change-Id: I94ac7b2cb0d43a82cf0eeee21407cff9b575c458
BUG: 1194640
Signed-off-by: arao <arao@redhat.com>
Signed-off-by: Mohamed Ashiq <mliyazud@redhat.com>
Reviewed-on: http://review.gluster.org/9897
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr-inode-write.c')
| -rw-r--r-- | xlators/cluster/afr/src/afr-inode-write.c | 14 | 
1 files changed, 10 insertions, 4 deletions
diff --git a/xlators/cluster/afr/src/afr-inode-write.c b/xlators/cluster/afr/src/afr-inode-write.c index ecbbe282da5..a1bf5b65491 100644 --- a/xlators/cluster/afr/src/afr-inode-write.c +++ b/xlators/cluster/afr/src/afr-inode-write.c @@ -1181,7 +1181,8 @@ afr_split_brain_resolve_do (call_frame_t *frame, xlator_t *this, loc_t *loc,           */          ret = afr_inode_split_brain_choice_set (loc->inode, this, -1);          if (ret) -                gf_log (this->name, GF_LOG_WARNING, "Failed to set" +                gf_msg (this->name, GF_LOG_WARNING, 0, +                        AFR_MSG_SPLIT_BRAIN_CHOICE_ERROR, "Failed to set"                          "split-brain choice to -1");          afr_heal_splitbrain_file (frame, this, loc);          ret = 0; @@ -1206,7 +1207,8 @@ afr_get_split_brain_child_index (xlator_t *this, void *value, size_t len)          spb_child_index = afr_get_child_index_from_name (this,                                                           spb_child_str);          if (spb_child_index < 0) { -                gf_log (this->name, GF_LOG_ERROR, "Invalid subvol: %s", +                gf_msg (this->name, GF_LOG_ERROR, 0, +                        AFR_MSG_INVALID_SUBVOL, "Invalid subvol: %s",                          spb_child_str);          }          return spb_child_index; @@ -1229,7 +1231,9 @@ afr_can_set_split_brain_choice (void *opaque)                                    &data->d_spb, &data->m_spb);          if (ret) -                gf_log (this->name, GF_LOG_ERROR, "Failed to determine if %s" +                gf_msg (this->name, GF_LOG_ERROR, 0, +                        AFR_MSG_SPLIT_BRAIN_CHOICE_ERROR, +                        "Failed to determine if %s"                          " is in split-brain. "                          "Aborting split-brain-choice set.",                          uuid_utoa (loc->gfid)); @@ -1287,7 +1291,9 @@ afr_handle_split_brain_commands (xlator_t *this, call_frame_t *frame,                                      afr_can_set_split_brain_choice,                                      afr_set_split_brain_choice, NULL, data);                  if (ret) { -                        gf_log (this->name, GF_LOG_ERROR, "Failed to create" +                        gf_msg (this->name, GF_LOG_ERROR, 0, +                                AFR_MSG_SPLIT_BRAIN_CHOICE_ERROR, +                                "Failed to create"                                  " synctask. Aborting split-brain choice set"                                  " for %s", loc->name);                          ret = 1;  | 
