From 340e58f9b3bcdfe4314da65e592dcd5c2daf6fd9 Mon Sep 17 00:00:00 2001 From: Amar Tumballi Date: Wed, 28 Nov 2018 10:05:39 +0530 Subject: all: add xlator_api to many translators Fixes: #164 Change-Id: I93ad6f0232a1dc534df099059f69951e1339086f Signed-off-by: Amar Tumballi --- xlators/system/posix-acl/src/posix-acl.c | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'xlators/system') diff --git a/xlators/system/posix-acl/src/posix-acl.c b/xlators/system/posix-acl/src/posix-acl.c index 33f2c19324c..38e48b8ced3 100644 --- a/xlators/system/posix-acl/src/posix-acl.c +++ b/xlators/system/posix-acl/src/posix-acl.c @@ -2303,7 +2303,7 @@ err: return -1; } -int +void fini(xlator_t *this) { struct posix_acl_conf *conf = NULL; @@ -2311,7 +2311,7 @@ fini(xlator_t *this) conf = this->private; if (!conf) - return 0; + return; this->private = NULL; minacl = conf->minimal_acl; @@ -2328,7 +2328,7 @@ fini(xlator_t *this) GF_FREE(conf); - return 0; + return; } struct xlator_fops fops = { @@ -2372,3 +2372,16 @@ struct volume_options options[] = { }, {.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 = "access-control", + .category = GF_MAINTAINED, +}; -- cgit