summaryrefslogtreecommitdiffstats
path: root/xlators/performance/decompounder/src/decompounder.c
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/performance/decompounder/src/decompounder.c')
-rw-r--r--xlators/performance/decompounder/src/decompounder.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/xlators/performance/decompounder/src/decompounder.c b/xlators/performance/decompounder/src/decompounder.c
index 6fb7f534e3f..2650d83237e 100644
--- a/xlators/performance/decompounder/src/decompounder.c
+++ b/xlators/performance/decompounder/src/decompounder.c
@@ -819,15 +819,27 @@ out:
return ret;
}
-int32_t
+void
fini(xlator_t *this)
{
if (!this)
- return 0;
+ return;
if (this->local_pool) {
mem_pool_destroy(this->local_pool);
this->local_pool = NULL;
}
- return 0;
+ return;
}
+
+xlator_api_t xlator_api = {
+ .init = init,
+ .fini = fini,
+ .mem_acct_init = mem_acct_init,
+ .op_version = {1}, /* Present from the initial version */
+ .fops = &fops,
+ .cbks = &cbks,
+ .options = options,
+ .identifier = "decompounder",
+ .category = GF_TECH_PREVIEW,
+};