[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 4/9] xl: add -c/--cpupool option to `xl list'
which, if provided, makes the command print a column with the name of the cpupool of the listed domain(s). Signed-off-by: Dario Faggioli <dario.faggioli@xxxxxxxxxx> Cc: Ian Campbell <ian.campbell@xxxxxxxxxx> Cc: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> Cc: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> Cc: Wei Liu <wei.liu2@xxxxxxxxxx> Cc: Juergen Gross <JGross@xxxxxxxx> --- docs/man/xl.pod.1 | 4 ++++ tools/libxl/xl_cmdimpl.c | 20 ++++++++++++++++---- tools/libxl/xl_cmdtable.c | 1 + 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/docs/man/xl.pod.1 b/docs/man/xl.pod.1 index 861ae21..c330016 100644 --- a/docs/man/xl.pod.1 +++ b/docs/man/xl.pod.1 @@ -304,6 +304,10 @@ Also prints the security labels. Also prints the domain UUIDs, the shutdown reason and security labels. +=item B<-c>, <--cpupool> + +Also prints the cpupool the domain belong to. + =item B<-n>, <--numa> Also prints the domain NUMA node affinity. diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 69469ff..42b3954 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -3521,7 +3521,7 @@ static void print_bitmap(uint8_t *map, int maplen, FILE *stream) } static void list_domains(bool verbose, bool context, bool claim, bool numa, - const libxl_dominfo *info, int nb_domain) + bool cpupool, const libxl_dominfo *info, int nb_domain) { int i; static const char shutdown_reason_letters[]= "-rscw"; @@ -3535,6 +3535,7 @@ static void list_domains(bool verbose, bool context, bool claim, bool numa, if (verbose) printf(" UUID Reason-Code\tSecurity Label"); if (context && !verbose) printf(" Security Label"); if (claim) printf(" Claimed"); + if (cpupool) printf(" Cpupool"); if (numa) { if (libxl_node_bitmap_alloc(ctx, &nodemap, 0)) { fprintf(stderr, "libxl_node_bitmap_alloc_failed.\n"); @@ -3579,6 +3580,11 @@ static void list_domains(bool verbose, bool context, bool claim, bool numa, printf(" %5lu", (unsigned long)info[i].outstanding_memkb / 1024); if (verbose || context) printf(" %16s", info[i].ssid_label ? : "-"); + if (cpupool) { + char *poolname = libxl_cpupoolid_to_name(ctx, info[i].cpupool); + printf("%16s", poolname); + free(poolname); + } if (numa) { libxl_domain_get_nodeaffinity(ctx, info[i].domid, &nodemap); @@ -4508,11 +4514,13 @@ int main_list(int argc, char **argv) bool verbose = false; bool context = false; bool details = false; + bool cpupool = false; bool numa = false; static struct option opts[] = { {"long", 0, 0, 'l'}, {"verbose", 0, 0, 'v'}, {"context", 0, 0, 'Z'}, + {"cpupool", 0, 0, 'c'}, {"numa", 0, 0, 'n'}, COMMON_LONG_OPTS, {0, 0, 0, 0} @@ -4522,7 +4530,7 @@ int main_list(int argc, char **argv) libxl_dominfo *info, *info_free=0; int nb_domain, rc; - SWITCH_FOREACH_OPT(opt, "lvhZn", opts, "list", 0) { + SWITCH_FOREACH_OPT(opt, "lvhZcn", opts, "list", 0) { case 'l': details = true; break; @@ -4532,6 +4540,9 @@ int main_list(int argc, char **argv) case 'Z': context = true; break; + case 'c': + cpupool = true; + break; case 'n': numa = true; break; @@ -4566,7 +4577,8 @@ int main_list(int argc, char **argv) if (details) list_domains_details(info, nb_domain); else - list_domains(verbose, context, 0 /* claim */, numa, info, nb_domain); + list_domains(verbose, context, false /* claim */, numa, cpupool, + info, nb_domain); if (info_free) libxl_dominfo_list_free(info, nb_domain); @@ -6617,7 +6629,7 @@ int main_claims(int argc, char **argv) } list_domains(0 /* verbose */, 0 /* context */, 1 /* claim */, - 0 /* numa */, info, nb_domain); + 0 /* numa */, 0 /* cpupool */, info, nb_domain); libxl_dominfo_list_free(info, nb_domain); return 0; diff --git a/tools/libxl/xl_cmdtable.c b/tools/libxl/xl_cmdtable.c index 22ab63b..9284887 100644 --- a/tools/libxl/xl_cmdtable.c +++ b/tools/libxl/xl_cmdtable.c @@ -53,6 +53,7 @@ struct cmd_spec cmd_table[] = { "-l, --long Output all VM details\n" "-v, --verbose Prints out UUIDs and security context\n" "-Z, --context Prints out security context\n" + "-c, --cpupool Prints the cpupool the domain is in\n" "-n, --numa Prints out NUMA node affinity" }, { "destroy", _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |