diff options
Diffstat (limited to 'xlators/mgmt')
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-op-sm.c | 23 | 
1 files changed, 22 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-op-sm.c b/xlators/mgmt/glusterd/src/glusterd-op-sm.c index 18054dcc93c..7c7dcda618e 100644 --- a/xlators/mgmt/glusterd/src/glusterd-op-sm.c +++ b/xlators/mgmt/glusterd/src/glusterd-op-sm.c @@ -3148,8 +3148,29 @@ glusterd_op_modify_op_ctx (glusterd_op_t op, void *ctx)                          goto out;                  } +                /* add 'node-name-%d' into op_ctx with value uuid_str. +                   this will be used to convert to hostname later */ +                { +                        char  key[1024]; +                        char *uuid_str = NULL; +                        int   i; + +                        for (i = 1; i <= count; i++) { +                                memset (key, 0, sizeof (key)); +                                snprintf (key, sizeof (key), "node-uuid-%d", i); +                                ret = dict_get_str (op_ctx, key, &uuid_str); +                                if (!ret) { +                                        memset (key, 0, sizeof (key)); +                                        snprintf (key, sizeof (key), +                                                  "node-name-%d", i); +                                        ret = dict_set_str (op_ctx, key, +                                                            uuid_str); +                                } +                        } +                } +                  ret = glusterd_op_volume_dict_uuid_to_hostname (op_ctx, -                                                                "node-uuid-%d", +                                                                "node-name-%d",                                                                  1, (count + 1));                  if (ret)                          gf_log (this->name, GF_LOG_WARNING,  | 
