[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xl: Drop -l option to xl cpupool-list
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1328633417 0 # Node ID b611bff9a8fc50cd2ba0cfb6ada31a8390f1bdea # Parent eae25241d571ecad4d4b69ac89b0accc9e0fbf6c xl: Drop -l option to xl cpupool-list The implementation (which was a nop) was removed back in 22838:aab67c1c6b87 but this now causes "set but not used" warnings from some compilers. Might as well just nuke the option entirely. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Juergen Gross <juergen.gross@xxxxxxxxxxxxxx> Committed-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- diff -r eae25241d571 -r b611bff9a8fc tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Tue Feb 07 15:05:19 2012 +0100 +++ b/tools/libxl/xl_cmdimpl.c Tue Feb 07 16:50:17 2012 +0000 @@ -5585,11 +5585,9 @@ int option_index = 0; static struct option long_options[] = { {"help", 0, 0, 'h'}, - {"long", 0, 0, 'l'}, {"cpus", 0, 0, 'c'}, {0, 0, 0, 0} }; - int opt_long = 0; int opt_cpus = 0; const char *pool = NULL; libxl_cpupoolinfo *poolinfo; @@ -5599,7 +5597,7 @@ int ret = 0; while (1) { - opt = getopt_long(argc, argv, "hlc", long_options, &option_index); + opt = getopt_long(argc, argv, "hc", long_options, &option_index); if (opt == -1) break; @@ -5607,9 +5605,6 @@ case 'h': help("cpupool-list"); return 0; - case 'l': - opt_long = 1; - break; case 'c': opt_cpus = 1; break; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |