summaryrefslogtreecommitdiffstats
path: root/xlators/features
diff options
context:
space:
mode:
authorMohammed Junaid Ahmed <junaid@gluster.com>2011-03-16 12:59:54 +0000
committerVijay Bellur <vijay@dev.gluster.com>2011-03-16 22:24:20 -0700
commit9796d4bf3015042f1b2bef22a2be6c22fed4cf4d (patch)
tree1bba8944dea27c994070d81ea3aaaf3ee59bd22a /xlators/features
parent6ddc55874985008ee51982d755743f0d01161a44 (diff)
features/marker: Invalid option "marker", use "gsync" instead.
Signed-off-by: Junaid <junaid@gluster.com> Signed-off-by: Vijay Bellur <vijay@dev.gluster.com> BUG: 2473 (Support for volume and directory level quota) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2473
Diffstat (limited to 'xlators/features')
-rw-r--r--xlators/features/marker/src/marker.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/xlators/features/marker/src/marker.c b/xlators/features/marker/src/marker.c
index 83824891235..b629a7eb634 100644
--- a/xlators/features/marker/src/marker.c
+++ b/xlators/features/marker/src/marker.c
@@ -1579,8 +1579,15 @@ init_gsync_priv (xlator_t *this)
int32_t ret = 0;
marker_conf_t *priv = NULL;
+ if (!this) {
+ ret = -1;
+ goto out;
+ }
+
options = this->options;
+ priv = this->private;
+
if((data = dict_get (options, VOLUME_UUID)) != NULL) {
priv->volume_uuid = data->data;
@@ -1673,7 +1680,7 @@ init (xlator_t *this)
}
}
- data = dict_get (options, "marker");
+ data = dict_get (options, "gsync");
if (data) {
if (strcmp (data->data, "on") == 0) {
priv->feature_enabled |= GF_GSYNC;
@@ -1773,6 +1780,6 @@ struct volume_options options[] = {
{.key = {"volume-uuid"}},
{.key = {"timestamp-file"}},
{.key = {"quota"}},
- {.key = {"marker"}},
+ {.key = {"gsync"}},
{.key = {NULL}}
};