All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix xm shutdown
@ 2005-12-13  9:54 Masaki Kanno
  2005-12-13 10:49 ` Ewan Mellor
  0 siblings, 1 reply; 4+ messages in thread
From: Masaki Kanno @ 2005-12-13  9:54 UTC (permalink / raw)
  To: xen-devel

Hi,

This patch adds error message to xm shutdown command. 

I ran xm shutdown command specifying Domain-0. (example: xm shutdown 0)
However, the error message was not shown. 
I think that the error message should be shown.

Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com>

Best Regards,
 Kan

diff -r 0255f48b757f tools/python/xen/xm/shutdown.py
--- a/tools/python/xen/xm/shutdown.py   Sun Dec  4 19:12:00 2005
+++ b/tools/python/xen/xm/shutdown.py   Tue Dec 13 13:28:26 2005
@@ -92,6 +92,10 @@
     if len(args) < 1: opts.err('Missing domain')
     dom = args[0]
     mode = shutdown_mode(opts)  
+    dom0_name = sxp.child_value(server.xend_domain(0), 'name')
+    for x in [dom0_name, DOM0_ID]:
+        if x in dom:
+            opts.err("Can't specify Domain-0")
     shutdown(opts, [ dom ], mode, opts.vals.wait)
     
 def main(argv):

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-12-14 12:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-13  9:54 [PATCH] Fix xm shutdown Masaki Kanno
2005-12-13 10:49 ` Ewan Mellor
2005-12-14  2:31   ` Masaki Kanno
2005-12-14 12:03     ` Ewan Mellor

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.