From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anthony Liguori Subject: Re: [PATCH] Fix xm list so that it triggers an internal state update in Xend Date: Wed, 31 Aug 2005 17:34:37 -0500 Message-ID: <4316307D.80203@us.ibm.com> References: <43162F63.70800@us.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <43162F63.70800@us.ibm.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel , Christian Limpach List-Id: xen-devel@lists.xenproject.org Hey Christian, BTW, this bug is also present in 2.0 (there's a bug filed in bugzilla about it). I'm going to close the bug report and defer to you guys to decide whether it's worth applying to 2.0 too. Thanks, Anthony Liguori Anthony Liguori wrote: > Fix xm list so that it triggers an internal state update in > Xend. > > Regards, > > Anthony Liguori > >------------------------------------------------------------------------ > ># HG changeset patch ># User Anthony Liguori ># Node ID eb6ce6e19ac4eb1bde83eaae8cea7a35ed6350e7 ># Parent 8af8ddf9107832cfe509ffe8e9f7ee65856b2fa3 >Fix xm list so that we trigger Xend to update its internal state even when >info is requested for individual domains. > >Signed-off-by: Anthony Liguori > >diff -r 8af8ddf91078 -r eb6ce6e19ac4 tools/python/xen/xm/main.py >--- a/tools/python/xen/xm/main.py Wed Aug 31 14:53:43 2005 >+++ b/tools/python/xen/xm/main.py Wed Aug 31 22:43:31 2005 >@@ -222,11 +222,16 @@ > > domsinfo = [] > from xen.xend.XendClient import server >- if n == 0: >- doms = server.xend_domains() >- doms.sort() >- else: >+ >+ # FIXME >+ # a bit of a hack, we need to call xend_domains to refresh xend's internal >+ # domain state. >+ doms = server.xend_domains() >+ doms.sort() >+ >+ if n != 0: > doms = params >+ > for dom in doms: > info = server.xend_domain(dom) > domsinfo.append(parse_doms_info(info)) > > >------------------------------------------------------------------------ > >_______________________________________________ >Xen-devel mailing list >Xen-devel@lists.xensource.com >http://lists.xensource.com/xen-devel > >