All of lore.kernel.org
 help / color / mirror / Atom feed
From: Masaki Kanno <kanno.masaki@jp.fujitsu.com>
To: Ewan Mellor <ewan@xensource.com>, xen-devel@lists.xensource.com
Subject: Re: [PATCH] Fix xm shutdown
Date: Wed, 14 Dec 2005 11:31:00 +0900	[thread overview]
Message-ID: <200512140231.AA02027@m-kanno.jp.fujitsu.com> (raw)
In-Reply-To: <20051213104950.GA12908@leeni.uk.xensource.com>

Hi Ewan,

Thanks for your advice.
I thought that the purpose of checking in shutdown() was for -all option,
so I approved twice checking.

The following is new patch.

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   Wed Dec 14 10:17:38 2005
@@ -57,7 +57,10 @@
     dom0_name = sxp.child_value(server.xend_domain(0), 'name')
     for x in [dom0_name, DOM0_ID]:
         if x in doms:
-            doms.remove(x)
+            if opts.vals.all:
+                doms.remove(x)
+            else:
+                opts.err("Can't specify Domain-0")
     for d in doms:
         server.xend_domain_shutdown(d, mode)
     if wait:


Ewan Mellor wrote:
>On Tue, Dec 13, 2005 at 06:54:05PM +0900, Masaki Kanno wrote:
>
>> 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):
>
>I agree that an error message would be better than silently ignoring this.
>However, your patch now leaves us performing this check twice -- once in
>main_dom(), and once in shutdown().  Could you not just show the error message
>if the check fails in shutdown() instead?
>
>Ewan.

  reply	other threads:[~2005-12-14  2:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
2005-12-14 12:03     ` Ewan Mellor

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200512140231.AA02027@m-kanno.jp.fujitsu.com \
    --to=kanno.masaki@jp.fujitsu.com \
    --cc=ewan@xensource.com \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.