diff options
Diffstat (limited to 'xlators/features/snapview-client/src')
| -rw-r--r-- | xlators/features/snapview-client/src/snapview-client.c | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/xlators/features/snapview-client/src/snapview-client.c b/xlators/features/snapview-client/src/snapview-client.c index a0c739f58af..0322ac82f86 100644 --- a/xlators/features/snapview-client/src/snapview-client.c +++ b/xlators/features/snapview-client/src/snapview-client.c @@ -2559,3 +2559,17 @@ struct volume_options options[] = {      },      {.key = {NULL}},  }; + +xlator_api_t xlator_api = { +    .init = init, +    .fini = fini, +    .notify = notify, +    .reconfigure = reconfigure, +    .mem_acct_init = mem_acct_init, +    .op_version = {1}, +    .fops = &fops, +    .cbks = &cbks, +    .options = options, +    .identifier = "snapview-client", +    .category = GF_MAINTAINED, +};  | 
