From dba7332557fa0e8169c980b67a0f60a50f99bcf8 Mon Sep 17 00:00:00 2001 From: Vijay Bellur Date: Sat, 4 Sep 2010 12:49:16 +0000 Subject: cli: Add support for GET volume Signed-off-by: Vijay Bellur Signed-off-by: Vijay Bellur BUG: 971 (dynamic volume management) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=971 --- cli/src/cli-cmd-volume.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'cli/src/cli-cmd-volume.c') diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c index 34651ae161f..d2820768945 100644 --- a/cli/src/cli-cmd-volume.c +++ b/cli/src/cli-cmd-volume.c @@ -85,6 +85,14 @@ cli_cmd_volume_info_cbk (struct cli_state *state, struct cli_cmd_word *word, !strcmp (words[2], "all"))) { ctx.flags = GF_CLI_GET_NEXT_VOLUME; proc = &cli_rpc_prog->proctable[GF1_CLI_GET_NEXT_VOLUME]; + } else if (wordcount == 3) { + ctx.flags = GF_CLI_GET_VOLUME; + ctx.volname = (char *)words[2]; + if (strlen (ctx.volname) > 1024) { + cli_out ("Invalid volume name"); + goto out; + } + proc = &cli_rpc_prog->proctable[GF1_CLI_GET_VOLUME]; } local = cli_local_get (); @@ -93,6 +101,8 @@ cli_cmd_volume_info_cbk (struct cli_state *state, struct cli_cmd_word *word, goto out; local->u.get_vol.flags = ctx.flags; + if (ctx.volname) + local->u.get_vol.volname = gf_strdup (ctx.volname); frame->local = local; -- cgit