From 71d69e4331d7abff910e1f013bb7b2cb9d7f630c Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Wed, 24 Jul 2013 14:49:58 -0700 Subject: Add switch and nufa options to 'gluster cli' Change-Id: Ic3c43291e0e1ead0d89c0436e8d70aa5dee2f543 BUG: 924488 Signed-off-by: Harshavardhana Reviewed-on: http://review.gluster.org/5391 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- xlators/mgmt/glusterd/src/glusterd-volume-set.c | 37 +++++++++++++++++++++---- 1 file changed, 31 insertions(+), 6 deletions(-) (limited to 'xlators/mgmt/glusterd/src/glusterd-volume-set.c') diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-set.c b/xlators/mgmt/glusterd/src/glusterd-volume-set.c index 245b29af940..b6dd09a6e00 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-set.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-set.c @@ -379,6 +379,27 @@ struct volopt_map_entry glusterd_volopt_map[] = { .op_version = 1, .flags = OPT_FLAG_CLIENT_OPT }, + { .key = "cluster.rsync-hash-regex", + .voltype = "cluster/distribute", + .type = NO_DOC, + .op_version = 3, + .flags = OPT_FLAG_CLIENT_OPT + }, + { .key = "cluster.extra-hash-regex", + .voltype = "cluster/distribute", + .type = NO_DOC, + .op_version = 3, + .flags = OPT_FLAG_CLIENT_OPT + }, + { .key = "cluster.dht-xattr-name", + .voltype = "cluster/distribute", + .option = "xattr-name", + .type = NO_DOC, + .op_version = 3, + .flags = OPT_FLAG_CLIENT_OPT + }, + + /* NUFA xlator options (Distribute special case) */ { .key = "cluster.nufa", .voltype = "cluster/distribute", .option = "!nufa", @@ -386,21 +407,25 @@ struct volopt_map_entry glusterd_volopt_map[] = { .op_version = 2, .flags = OPT_FLAG_CLIENT_OPT }, - { .key = "cluster.rsync-hash-regex", - .voltype = "cluster/distribute", + { .key = "cluster.local-volume-name", + .voltype = "cluster/nufa", + .option = "local-volume-name", .type = NO_DOC, .op_version = 3, .flags = OPT_FLAG_CLIENT_OPT }, - { .key = "cluster.extra-hash-regex", + + /* Switch xlator options (Distribute special case) */ + { .key = "cluster.switch", .voltype = "cluster/distribute", + .option = "!switch", .type = NO_DOC, .op_version = 3, .flags = OPT_FLAG_CLIENT_OPT }, - { .key = "cluster.dht-xattr-name", - .voltype = "cluster/distribute", - .option = "xattr-name", + { .key = "cluster.switch-pattern", + .voltype = "cluster/switch", + .option = "pattern.switch.case", .type = NO_DOC, .op_version = 3, .flags = OPT_FLAG_CLIENT_OPT -- cgit