diff options
| author | Vijay Bellur <vijay@gluster.com> | 2010-07-12 08:19:44 +0000 | 
|---|---|---|
| committer | Anand V. Avati <avati@dev.gluster.com> | 2010-07-12 06:59:29 -0700 | 
| commit | 6ef7f0e25fb7c76231b4d4ae05cbc45330de300d (patch) | |
| tree | 6e5b8537dfbee8b7d8e51cdbb62af1d9d0f31a35 /cli/src/cli-cmd-volume.c | |
| parent | 9bee476eabb5034a27e994008a12ef684755d76c (diff) | |
Changes in CLI and glusterd
Signed-off-by: Vijay Bellur <vijay@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 971 (dynamic volume management)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=971
Diffstat (limited to 'cli/src/cli-cmd-volume.c')
| -rw-r--r-- | cli/src/cli-cmd-volume.c | 24 | 
1 files changed, 12 insertions, 12 deletions
diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c index 227438db479..dd15a78379c 100644 --- a/cli/src/cli-cmd-volume.c +++ b/cli/src/cli-cmd-volume.c @@ -52,7 +52,7 @@ cli_cmd_volume_info_cbk (struct cli_state *state, struct cli_cmd_word *word,          if (proc->fn) {                  ret = proc->fn (frame, THIS, "localhost"); -        }  +        }  out:          if (ret) @@ -116,7 +116,7 @@ cli_cmd_volume_delete_cbk (struct cli_state *state, struct cli_cmd_word *word,          if (proc->fn) {                  ret = proc->fn (frame, THIS, volname); -        }  +        }  out:          if (ret) @@ -147,7 +147,7 @@ cli_cmd_volume_start_cbk (struct cli_state *state, struct cli_cmd_word *word,          if (proc->fn) {                  ret = proc->fn (frame, THIS, volname); -        }  +        }  out:          if (ret) @@ -178,7 +178,7 @@ cli_cmd_volume_stop_cbk (struct cli_state *state, struct cli_cmd_word *word,          if (proc->fn) {                  ret = proc->fn (frame, THIS, volname); -        }  +        }  out:          if (ret) @@ -224,12 +224,12 @@ cli_cmd_volume_rename_cbk (struct cli_state *state, struct cli_cmd_word *word,          if (proc->fn) {                  ret = proc->fn (frame, THIS, dict); -        }  +        }  out:          if (ret) {                  char *volname = (char *) words[2]; -                if (dict)  +                if (dict)                          dict_destroy (dict);                  cli_out ("Renaming Volume %s failed", volname );          } @@ -259,7 +259,7 @@ cli_cmd_volume_defrag_cbk (struct cli_state *state, struct cli_cmd_word *word,          if (proc->fn) {                  ret = proc->fn (frame, THIS, volname); -        }  +        }  out:          if (ret) @@ -290,7 +290,7 @@ cli_cmd_volume_set_cbk (struct cli_state *state, struct cli_cmd_word *word,          GF_ASSERT (words[3]); -        ret = cli_cmd_volume_set_parse (words, wordcount, &dict);  +        ret = cli_cmd_volume_set_parse (words, wordcount, &dict);          if (ret)                  goto out; @@ -298,7 +298,7 @@ cli_cmd_volume_set_cbk (struct cli_state *state, struct cli_cmd_word *word,          //TODO: Build validation here          if (proc->fn) {                  ret = proc->fn (frame, THIS, dict); -        }  +        }  out:          if (ret) { @@ -334,7 +334,7 @@ cli_cmd_volume_add_brick_cbk (struct cli_state *state,          if (proc->fn) {                  ret = proc->fn (frame, THIS, options); -        }  +        }  out:          if (ret) { @@ -368,7 +368,7 @@ cli_cmd_volume_remove_brick_cbk (struct cli_state *state,          if (proc->fn) {                  ret = proc->fn (frame, THIS, options); -        }  +        }  out:          if (ret) { @@ -406,7 +406,7 @@ cli_cmd_volume_replace_brick_cbk (struct cli_state *state,          if (proc->fn) {                  ret = proc->fn (frame, THIS, options); -        }  +        }  out:          if (ret) {  | 
