# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1197031467 0
# Node ID 8e6c01aef56df2f6d25619221c3b686f8fc52dfb
# Parent 14830da3fa9da5483aaf5c33fd837b52a1da449f
xm: Fix help messages of xm vcpu-list/uptime
We can give multiple domains to the following commands.
But, the help messages of the commands are explained to be able
to give a single domain.
Signed-off-by: Masaki Kanno <kanno.masaki@xxxxxxxxxxxxxx>
---
tools/python/xen/xm/main.py | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff -r 14830da3fa9d -r 8e6c01aef56d tools/python/xen/xm/main.py
--- a/tools/python/xen/xm/main.py Fri Dec 07 12:43:06 2007 +0000
+++ b/tools/python/xen/xm/main.py Fri Dec 07 12:44:27 2007 +0000
@@ -114,7 +114,8 @@ SUBCOMMAND_HELP = {
'shutdown' : ('<Domain> [-waRH]', 'Shutdown a domain.'),
'top' : ('', 'Monitor a host and the domains in real time.'),
'unpause' : ('<Domain>', 'Unpause a paused domain.'),
- 'uptime' : ('[-s] <Domain>', 'Print uptime for a domain.'),
+ 'uptime' : ('[-s] [Domain, ...]',
+ 'Print uptime for all/some domains.'),
# Life cycle xm commands
'new' : ('<ConfigFile> [options] [vars]',
@@ -143,8 +144,8 @@ SUBCOMMAND_HELP = {
'debug-keys' : ('<Keys>', 'Send debug keys to Xen.'),
'trigger' : ('<Domain> <nmi|reset|init> [<VCPU>]',
'Send a trigger to a domain.'),
- 'vcpu-list' : ('[<Domain>]',
- 'List the VCPUs for a domain or all domains.'),
+ 'vcpu-list' : ('[Domain, ...]',
+ 'List the VCPUs for all/some domains.'),
'vcpu-pin' : ('<Domain> <VCPU|all> <CPUs|all>',
'Set which CPUs a VCPU can use.'),
'vcpu-set' : ('<Domain> <vCPUs>',
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|