diff options
Diffstat (limited to 'xlators/features/read-only/src/read-only.c')
| -rw-r--r-- | xlators/features/read-only/src/read-only.c | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/xlators/features/read-only/src/read-only.c b/xlators/features/read-only/src/read-only.c index b206d2f5545..ac966633c34 100644 --- a/xlators/features/read-only/src/read-only.c +++ b/xlators/features/read-only/src/read-only.c @@ -130,3 +130,16 @@ struct volume_options options[] = {                      "\"off\" by default."},      {.key = {NULL}},  }; + +xlator_api_t xlator_api = { +    .init = init, +    .fini = fini, +    .reconfigure = reconfigure, +    .mem_acct_init = mem_acct_init, +    .op_version = {1}, /* Present from the initial version */ +    .fops = &fops, +    .cbks = &cbks, +    .options = options, +    .identifier = "read-only", +    .category = GF_TECH_PREVIEW, +};  | 
