summaryrefslogtreecommitdiffstats
path: root/cli
diff options
context:
space:
mode:
authorAtin Mukherjee <amukherj@redhat.com>2015-04-16 17:45:04 +0530
committerKaushal M <kaushal@redhat.com>2015-04-26 21:54:29 -0700
commit4c3724f195240e40994b71add255f85ee1b025fb (patch)
tree33826be8145a49ab7b7c4082aa46aa64dc8ca172 /cli
parent004f64e93d23f44144483d21422f47e81d358045 (diff)
cli: fix vol_type in volume info xml
xml parsing of voltype should be inline with the cli Change-Id: I41ddddac00d07f03b56a041e1c3f5a132fbd7393 BUG: 1212398 Signed-off-by: Atin Mukherjee <amukherj@redhat.com> Reviewed-on: http://review.gluster.org/10271 Tested-by: NetBSD Build System Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Kaushal M <kaushal@redhat.com>
Diffstat (limited to 'cli')
-rw-r--r--cli/src/cli-cmd-parser.c9
-rw-r--r--cli/src/cli-rpc-ops.c2
-rw-r--r--cli/src/cli-xml-output.c6
3 files changed, 14 insertions, 3 deletions
diff --git a/cli/src/cli-cmd-parser.c b/cli/src/cli-cmd-parser.c
index 16067f5744b..74e8453dd6b 100644
--- a/cli/src/cli-cmd-parser.c
+++ b/cli/src/cli-cmd-parser.c
@@ -372,6 +372,9 @@ cli_validate_disperse_volume (char *word, gf1_cluster_type type,
cli_err ("replicated-dispersed volume is not "
"supported");
goto out;
+ default:
+ cli_err ("Invalid type given");
+ break;
}
out:
return ret;
@@ -509,6 +512,9 @@ cli_cmd_volume_create_parse (struct cli_state *state, const char **words,
cli_err ("replicated-dispersed volume is not "
"supported");
goto out;
+ default:
+ cli_err ("Invalid type given");
+ goto out;
}
if (wordcount < (index+2)) {
@@ -571,6 +577,9 @@ cli_cmd_volume_create_parse (struct cli_state *state, const char **words,
cli_err ("striped-tier volume is not "
"supported");
goto out;
+ default:
+ cli_err ("Invalid type given");
+ goto out;
}
if (wordcount < (index + 2)) {
ret = -1;
diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c
index 769fdb62330..170b0f11777 100644
--- a/cli/src/cli-rpc-ops.c
+++ b/cli/src/cli-rpc-ops.c
@@ -745,7 +745,7 @@ xml_output:
// Distributed (stripe/replicate/stripe-replica) setups
if ((type != GF_CLUSTER_TYPE_TIER) && (type > 0) &&
(dist_count < brick_count))
- vol_type = type + 5;
+ vol_type = type + GF_CLUSTER_TYPE_MAX - 1;
cli_out ("Volume Name: %s", volname);
cli_out ("Type: %s", cli_vol_type_str[vol_type]);
diff --git a/cli/src/cli-xml-output.c b/cli/src/cli-xml-output.c
index e5afe1b427d..cbb4c1f58e7 100644
--- a/cli/src/cli-xml-output.c
+++ b/cli/src/cli-xml-output.c
@@ -2687,8 +2687,10 @@ cli_xml_output_vol_info (cli_local_t *local, dict_t *dict)
/* For Distributed-(stripe,replicate,stipe-replicate,disperse)
types
*/
- if ((type > 0) && (dist_count < brick_count))
- type += 4;
+ if ((type != GF_CLUSTER_TYPE_TIER) && (type > 0) &&
+ (dist_count < brick_count))
+ type = type + GF_CLUSTER_TYPE_MAX - 1;
+
ret = xmlTextWriterWriteFormatElement (local->writer,
(xmlChar *)"type",
"%d", type);