/* Copyright (c) 2015 Red Hat, Inc. This file is part of GlusterFS. This file is licensed to you under your choice of the GNU Lesser General Public License, version 3 or any later version (LGPLv3 or later), or the GNU General Public License, version 2 (GPLv2), in all cases as published by the Free Software Foundation. */ #ifndef _CONFIG_H #define _CONFIG_H #include "config.h" #endif #include "ganesha.h" #include "ganesha-mem-types.h" int32_t init (xlator_t *this) { int ret = -1; ganesha_priv_t *priv = NULL; if (!this->children || this->children->next) { gf_log (this->name, GF_LOG_ERROR, "Need subvolume == 1"); goto err; } if (!this->parents) { gf_log (this->name, GF_LOG_WARNING, "Dangling volume. Check volfile"); goto err; } priv = GF_CALLOC (1, sizeof (*priv), gf_ganesha_mt_priv_t); if (!priv) goto err; this->private = priv; ret = 0; err: return ret; } void fini (xlator_t *this) { ganesha_priv_t *priv = this->private; this->private = NULL; if (priv) GF_FREE (priv); return; } struct xlator_fops fops = { }; struct xlator_cbks cbks = { }; struct volume_options options[] = { { .key = {"features.ganesha"}, .default_value = "disable", .type = GF_OPTION_TYPE_BOOL, .description = "enable translator" }, { .key = {"ganesha.enable"}, .default_value = "off", .type = GF_OPTION_TYPE_BOOL, .description = "export volume via NFS-Ganesha" }, { .key = {NULL} }, };