diff options
author | Sanju Rakonde <srakonde@redhat.com> | 2019-04-26 22:28:53 +0530 |
---|---|---|
committer | Sanju Rakonde <srakonde@redhat.com> | 2019-04-27 19:06:11 +0530 |
commit | 5d866c13efdcdeddf184f012aa88a652e90ff22e (patch) | |
tree | f1079622b16b47bbe711fa3a37dd671414728955 /xlators/mgmt/glusterd | |
parent | e10946dbfe18204d3e4a50e218ac3dbdab82a3a9 (diff) |
glusterd: define dumpops in the xlator_api of glusterd
Problem: statedump is not capturing information related to glusterd
Solution: statdump is not capturing glusterd info because
trav->dumpops is null in gf_proc_dump_single_xlator_info ()
where trav is glusterd xlator object. trav->dumpops is null
because we missed to define dumpops in xlator_api of glusterd.
defining dumpops in xlator_api of glusterd fixes the issue.
fixes: bz#1703629
Change-Id: If85429ecb1ef580aced8d5b88d09fc15258bfc4c
Signed-off-by: Sanju Rakonde <srakonde@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd.c b/xlators/mgmt/glusterd/src/glusterd.c index d4ab63095e2..c0973cb2bea 100644 --- a/xlators/mgmt/glusterd/src/glusterd.c +++ b/xlators/mgmt/glusterd/src/glusterd.c @@ -2231,6 +2231,7 @@ xlator_api_t xlator_api = { .fini = fini, .mem_acct_init = mem_acct_init, .op_version = {1}, /* Present from the initial version */ + .dumpops = &dumpops, .fops = &fops, .cbks = &cbks, .options = options, |