diff options
| author | Ravishankar N <ravishankar@redhat.com> | 2019-03-15 19:31:03 +0530 | 
|---|---|---|
| committer | Shyamsundar Ranganathan <srangana@redhat.com> | 2019-04-16 10:48:40 +0000 | 
| commit | 5946db166a428d37f5bbbb3df802a1e53cab5029 (patch) | |
| tree | 9dd8231f9d3b822441eea1e5455156ee575d2c15 /xlators/cluster/afr/src/afr-self-heal-entry.c | |
| parent | 27a96f1f344d16de8085ace40c2be99c3cd83139 (diff) | |
afr: add client-pid to all gf_event() calls
client-pid for glustershd is GF_CLIENT_PID_SELF_HEALD
client-pid for glfsheal is GF_CLIENT_PID_GLFS_HEALD
updates: bz#1693155
Change-Id: Ib3a863af160ff48c822a5e6b0c27c575c9887470
Signed-off-by: Ravishankar N <ravishankar@redhat.com>
(cherry picked from commit 8016d51a3bbd410b0b927ed66be50a09574b7982)
Diffstat (limited to 'xlators/cluster/afr/src/afr-self-heal-entry.c')
| -rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-entry.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heal-entry.c b/xlators/cluster/afr/src/afr-self-heal-entry.c index b23ed6a1afa..fc09b4ce539 100644 --- a/xlators/cluster/afr/src/afr-self-heal-entry.c +++ b/xlators/cluster/afr/src/afr-self-heal-entry.c @@ -269,11 +269,12 @@ afr_selfheal_detect_gfid_and_type_mismatch(xlator_t *this,                     gf_inode_type_to_str(replies[src_idx].poststat.ia_type),                     priv->children[src_idx]->name);              gf_event(EVENT_AFR_SPLIT_BRAIN, +                     "client-pid=%d;"                       "subvol=%s;type=file;"                       "file=<gfid:%s>/%s>;count=2;child-%d=%s;type-"                       "%d=%s;child-%d=%s;type-%d=%s", -                     this->name, uuid_utoa(pargfid), bname, i, -                     priv->children[i]->name, i, +                     this->ctx->cmd_args.client_pid, this->name, +                     uuid_utoa(pargfid), bname, i, priv->children[i]->name, i,                       gf_inode_type_to_str(replies[i].poststat.ia_type), src_idx,                       priv->children[src_idx]->name, src_idx,                       gf_inode_type_to_str(replies[src_idx].poststat.ia_type));  | 
