diff options
author | Ashish Pandey <aspandey@redhat.com> | 2016-04-11 17:31:58 +0530 |
---|---|---|
committer | Atin Mukherjee <amukherj@redhat.com> | 2016-06-14 06:19:07 -0700 |
commit | d079d6f6ec21955a600feb43e1154cabf18008ff (patch) | |
tree | 9a2844adf97678adc32492b631b0dd035c46aca0 /xlators/performance | |
parent | 352758e2f2548a5a66186e8b3179b1e3ee11984c (diff) |
performance/decompounder: Add graph for decompounder xlator
This xlator will fall below protocol/server.
This is mandatory xlator without any options.
Observed that the callback for decompounder translator
was not added which was causing volume start
to fail.
Added cbks for decompounder.
Change-Id: I3e16a566376338d9c6d36d6fbc7bf295fda9f3a6
BUG: 1335019
Signed-off-by: Ashish Pandey <aspandey@redhat.com>
Reviewed-on: http://review.gluster.org/13968
Smoke: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Ravishankar N <ravishankar@redhat.com>
Reviewed-by: Anuradha Talur <atalur@redhat.com>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
Diffstat (limited to 'xlators/performance')
-rw-r--r-- | xlators/performance/decompounder/src/decompounder.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xlators/performance/decompounder/src/decompounder.c b/xlators/performance/decompounder/src/decompounder.c index 830876ec0bf..3009fcdd4b1 100644 --- a/xlators/performance/decompounder/src/decompounder.c +++ b/xlators/performance/decompounder/src/decompounder.c @@ -899,6 +899,12 @@ out: return 0; } +struct xlator_cbks cbks = { +}; + +struct volume_options options[] = { +}; + struct xlator_fops fops = { .compound = dc_compound, }; |