]> xenbits.xensource.com Git - libvirt.git/commitdiff
virsh: Fix types for option bandwidth in block*
authorHao Liu <hliu@redhat.com>
Thu, 6 Nov 2014 08:01:00 +0000 (09:01 +0100)
committerPavel Hrdina <phrdina@redhat.com>
Thu, 6 Nov 2014 08:37:20 +0000 (09:37 +0100)
Bandwidth options in blockcommit, blockcopy, blockjob and blockpull
are parsed by vshCommandOptULWrap() and should be shown as a number
type option.

And a typo is fixed.

Signed-off-by: Hao Liu <hliu@redhat.com>
tools/virsh-domain.c

index dfc3a8c192900d7d9ddf463a6d24a9c2ede1831a..bd5f4041dce11bbf241aae0680f79ff858cb1a9c 100644 (file)
@@ -1616,7 +1616,7 @@ static const vshCmdOptDef opts_block_commit[] = {
      .help = N_("fully-qualified path of disk")
     },
     {.name = "bandwidth",
-     .type = VSH_OT_DATA,
+     .type = VSH_OT_INT,
      .help = N_("bandwidth limit in MiB/s")
     },
     {.name = "base",
@@ -1834,7 +1834,7 @@ static const vshCmdOptDef opts_block_copy[] = {
      .help = N_("path of the copy to create")
     },
     {.name = "bandwidth",
-     .type = VSH_OT_DATA,
+     .type = VSH_OT_INT,
      .help = N_("bandwidth limit in MiB/s")
     },
     {.name = "shallow",
@@ -2190,8 +2190,8 @@ static const vshCmdOptDef opts_block_job[] = {
      .help = N_("implies --info; output details rather than human summary")
     },
     {.name = "bandwidth",
-     .type = VSH_OT_DATA,
-     .help = N_("set the Bandwidth limit in MiB/s")
+     .type = VSH_OT_INT,
+     .help = N_("set the bandwidth limit in MiB/s")
     },
     {.name = NULL}
 };
@@ -2349,7 +2349,7 @@ static const vshCmdOptDef opts_block_pull[] = {
      .help = N_("fully-qualified path of disk")
     },
     {.name = "bandwidth",
-     .type = VSH_OT_DATA,
+     .type = VSH_OT_INT,
      .help = N_("bandwidth limit in MiB/s")
     },
     {.name = "base",