* [PATCH] Fix xm list --long
@ 2005-08-13 19:25 Anthony Liguori
0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2005-08-13 19:25 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1: Type: text/plain, Size: 199 bytes --]
Currently xm list --long only displays info about the last domain. The
attached patch fixes this so it displays info about each domain.
Signed-off-by: Anthony Liguori
Regards,
Anthony Liguori
[-- Attachment #2: xend_xm_list_long.diff --]
[-- Type: text/x-patch, Size: 807 bytes --]
# HG changeset patch
# User Anthony Liguori <aliguori@us.ibm.com>
# Node ID a5e3caa6efbf3a46515c8b4f39219eaed75b2b6c
# Parent 73fccd848200b63230002b2d96df897ab232627a
Fix xm list --long to display info about all domains
diff -r 73fccd848200 -r a5e3caa6efbf tools/python/xen/xm/main.py
--- a/tools/python/xen/xm/main.py Fri Aug 12 20:06:15 2005
+++ b/tools/python/xen/xm/main.py Sat Aug 13 19:31:13 2005
@@ -224,8 +224,9 @@
domsinfo.append(parse_doms_info(info))
if use_long:
- # this actually seems like a bad idea, as it just dumps sexp out
- PrettyPrint.prettyprint(info)
+ for dom in doms:
+ info = server.xend_domain(dom)
+ PrettyPrint.prettyprint(info)
elif show_vcpus:
xm_show_vcpus(domsinfo)
elif format:
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-08-13 19:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-13 19:25 [PATCH] Fix xm list --long Anthony Liguori
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.