[Libvir] virt-install virt-install virt-install : *** glibc detected *** /usr/bin/python: free(): invalid pointer *** *** glibc detected *** /usr/bin/python: free(): invalid pointer: ******

2007-10-24 Thread suyash jape
Hi I am getting the following output when i try to use virt-install [EMAIL PROTECTED] virt-install *** glibc detected *** /usr/bin/python: free(): invalid pointer: 0x08bea0a0 *** === Backtrace: = /lib/i686/nosegneg/libc.so.6[0x2f89b1]

[Libvir] [PATCH] Xen: Support cpu_weight and cpu_cap for Xen.

2007-10-24 Thread Tatsuro Enokura
Hi, I set the information of cpu_weight/cpu_cap to configuration file or sxp format, and execute virsh start. But the information of weight/cap is lost. libvirt doesn't support cpu_weight and cpu_cap for XML format. see also Bz#337591 https://bugzilla.redhat.com/show_bug.cgi?id=337591 I make

Re: [Libvir] [PATCH] finish NUMA code reorg, plug cpuset at creat time support

2007-10-24 Thread Saori Fukuta
On Tue, 23 Oct 2007 05:29:21 -0400 Daniel Veillard wrote: On Tue, Oct 23, 2007 at 04:07:34PM +0900, Saori Fukuta wrote: On Mon, 22 Oct 2007 12:39:50 -0400 Daniel Veillard wrote: The following patch finishes the cleanup for NUMA parsing code: - the cpuset parsing is moved to xml.c

[Libvir] virt-install : *** glibc detected *** /usr/bin/python: free(): invalid pointer *** ***

2007-10-24 Thread suyash jape
Hi all I am getting the following output when i try to use virt-install [EMAIL PROTECTED] virt-install *** glibc detected *** /usr/bin/python: free(): invalid pointer: 0x08bea0a0 *** === Backtrace: = /lib/i686/nosegneg/libc.so.6[0x2f89b1]

Re: [Libvir] virt-install : *** glibc detected *** /usr/bin/python: free(): invalid pointer *** ***

2007-10-24 Thread Richard W.M. Jones
suyash jape wrote: Hi all I am getting the following output when i try to use virt-install [EMAIL PROTECTED] virt-install *** glibc detected *** /usr/bin/python: free(): invalid pointer: 0x08bea0a0 *** === Backtrace: = /lib/i686/nosegneg/libc.so.6[0x2f89b1]

[Libvir] detect overflow in string-to-int conversion

2007-10-24 Thread Jim Meyering
Hi, Not a big deal, but it's better not to accept a bogus 4294967297 and silently map it to 1. Don't accept an arbitrarily-long string of digits. * src/xml.c (parseNumber): Detect overflow. diff --git a/src/xml.c b/src/xml.c index 3e92040..5011dc2 100644 --- a/src/xml.c +++

Re: [Libvir] detect overflow in string-to-int conversion

2007-10-24 Thread Daniel Veillard
On Wed, Oct 24, 2007 at 03:52:22PM +0200, Jim Meyering wrote: Hi, Not a big deal, but it's better not to accept a bogus 4294967297 and silently map it to 1. Don't accept an arbitrarily-long string of digits. * src/xml.c (parseNumber): Detect overflow. Right, thanks ! I