diff options
Diffstat (limited to 'xlators/features/trash/src')
| -rw-r--r-- | xlators/features/trash/src/trash.c | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/xlators/features/trash/src/trash.c b/xlators/features/trash/src/trash.c index 51dc6fac7ab..d66843625d3 100644 --- a/xlators/features/trash/src/trash.c +++ b/xlators/features/trash/src/trash.c @@ -2636,3 +2636,17 @@ struct volume_options options[] = {       .default_value = "{{ brick.path }}"},      {.key = {NULL}},  }; + +xlator_api_t xlator_api = { +    .init = init, +    .fini = fini, +    .notify = notify, +    .reconfigure = reconfigure, +    .mem_acct_init = mem_acct_init, +    .op_version = {1}, /* Present from the initial version */ +    .fops = &fops, +    .cbks = &cbks, +    .options = options, +    .identifier = "trash", +    .category = GF_TECH_PREVIEW, +};  | 
