aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDario Faggioli <dario.faggioli@citrix.com>2013-09-11 13:06:22 +0200
committerIan Campbell <ian.campbell@citrix.com>2013-09-13 12:50:39 +0100
commit3998afdbf99959582dcd9f9f4df5a6fe7ce4ded8 (patch)
treebb7d3feaf6866a984aeee7e629960740081bfcd8 /tools
parent11a63a1660453269ddd1893c15d0a98133b33ca7 (diff)
downloadxen-3998afdbf99959582dcd9f9f4df5a6fe7ce4ded8.tar.gz
xen-3998afdbf99959582dcd9f9f4df5a6fe7ce4ded8.tar.bz2
xen-3998afdbf99959582dcd9f9f4df5a6fe7ce4ded8.zip
xl: fix `xl cpupool-list' behavior in case no pool name is provided
since it errors out, asking for at least one argument, and does not display any useful output, which is wrong (we want the list and the info about all the existing cpupools). IOW, the output is as follows: ~# xl cpupool-list -c 'xl cpupool-list' requires at least 1 argument. ... While it should be as follows: ~# xl cpupool-list -c Name CPU list Pool-0 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 Signed-off-by: Dario Faggioli <dario.faggioli@citrix.com> Acked-by: Juergen Gross <juergen.gross@ts.fujitsu.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/libxl/xl_cmdimpl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c
index 884f050644..35b3e290ff 100644
--- a/tools/libxl/xl_cmdimpl.c
+++ b/tools/libxl/xl_cmdimpl.c
@@ -6570,7 +6570,7 @@ int main_cpupoollist(int argc, char **argv)
char *name;
int ret = 0;
- SWITCH_FOREACH_OPT(opt, "hc", opts, "cpupool-list", 1) {
+ SWITCH_FOREACH_OPT(opt, "hc", opts, "cpupool-list", 0) {
case 'c':
opt_cpus = 1;
break;