Satoshi Uchida
2006-Jan-13 02:23 UTC
[Xen-devel] [PATCH] cpus configure analysis has easy miss: fixed
There are easy miss in cpus configuration analysis. When using remove character ''^'', cpu number is accepted only single figures. This patch is fixed above problem. diff -r 1e1107e3d894 tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Wed Jan 11 19:14:27 2006 +++ b/tools/python/xen/xend/XendDomainInfo.py Fri Jan 13 06:19:23 2006 @@ -329,7 +329,7 @@ else: # remove this element from the list if c[0] == ''^'': - cpus = [x for x in cpus if x != int(c[1])] + cpus = [x for x in cpus if x != int(c[1:])] else: cpus.append(int(c)) Satoshi UCHIDA _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Ewan Mellor
2006-Apr-03 17:40 UTC
Re: [Xen-devel] [PATCH] cpus configure analysis has easy miss: fixed
On Fri, Jan 13, 2006 at 11:23:20AM +0900, Satoshi Uchida wrote:> There are easy miss in cpus configuration analysis. > > When using remove character ''^'', cpu number is accepted only single > figures. > > This patch is fixed above problem.Applied, thank you. Sorry this patch has been ignored for so long -- I''ve only just found it languishing in my inbox. Please, everyone, re-send patches if they haven''t been picked up after a few days -- it''s easy to lose patches like this. Thanks, Ewan. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel