[libvirt] Release schedule for libvirt 0.9.9

2011-12-27 Thread Daniel Veillard
Again trying to keep with the monthly schedule of libvirt releases I suggest to enter the freeze on Friday 30 at the end of the week, targetting a 0.9.9 release one week later by Jan 6. There is a few patch set that we should try to get in: - kvm guest capabilities from Taku Izumi -

[libvirt] [PATCH][TCK] add test case for block job lifecycle testing

2011-12-27 Thread xhu
diff --git a/scripts/domain/400-blockjob-lifecycle.t b/scripts/domain/400-blockjob-lifecycle.t new file mode 100644 index 000..f4d0c39 --- /dev/null +++ b/scripts/domain/400-blockjob-lifecycle.t @@ -0,0 +1,136 @@ +# -*- perl -*- +# +# Copyright (C) 2011-2012 Red Hat, Inc. +# Copyright (C)

Re: [libvirt] [PATCHv2] daemon: clean up daemonization

2011-12-27 Thread Daniel Veillard
On Fri, Dec 23, 2011 at 02:13:53PM -0700, Eric Blake wrote: Valgrind detected a pipe fd leak before the parent exits on success, introduced in commit 4296cea; by itself, the leak is not bad, since we immediately called _exit(), but we might as well be clean to make valgrind analysis easier.

[libvirt] [PATCH] virsh: move version command to virsh group

2011-12-27 Thread Lai Jiangshan
Trivial patch, move version command to virsh commands group. It has no any related with any domain. It may connect to the daemon, so the flag is 0 but not VSH_CMD_FLAG_NOCONNECT. --- diff --git a/tools/virsh.c b/tools/virsh.c index 02f2e0d..0166bc6 100644 --- a/tools/virsh.c +++ b/tools/virsh.c

[libvirt] Issue with GVirDomainDisk setters

2011-12-27 Thread Zeeshan Ali (Khattak)
Hi Christophe, I just found out a small issue in GVirDomainDisk setter functions: they always add a new attribute on each call rather than overriding existing value. For example this Vala code: disk.set_guest_device_type (DomainDiskGuestDeviceType.DISK); disk.set_target_dev

Re: [libvirt] [PATCH v2 0/5] RFC: grant KVM guests retain arbitrary capabilities

2011-12-27 Thread Shu Ming
On 2011-12-22 14:49, Taku Izumi wrote: Hi Daniel-san and all, This patchset adds an option for KVM guests to retain arbitrary capabilities. The first version is here: http://www.redhat.com/archives/libvir-list/2011-December/msg00857.html According to Daniel-san's comment, I changed my patch

Re: [libvirt] [PATCH] virsh: move version command to virsh group

2011-12-27 Thread Osier Yang
On 2011年12月27日 16:59, Lai Jiangshan wrote: Trivial patch, move version command to virsh commands group. It has no any related with any domain. It may connect to the daemon, so the flag is 0 but not VSH_CMD_FLAG_NOCONNECT. --- diff --git a/tools/virsh.c b/tools/virsh.c index 02f2e0d..0166bc6

Re: [libvirt] [PATCH v2 0/5] RFC: grant KVM guests retain arbitrary capabilities

2011-12-27 Thread Taku Izumi
Thank you for your comment. On Wed, 28 Dec 2011 10:44:50 +0800 Shu Ming shum...@linux.vnet.ibm.com wrote: On 2011-12-22 14:49, Taku Izumi wrote: Hi Daniel-san and all, This patchset adds an option for KVM guests to retain arbitrary capabilities. The first version is here:

Re: [libvirt] [PATCHv2 1/5] Add API virDomain{S, G}etInterfaceParameters

2011-12-27 Thread Osier Yang
On 2011年12月23日 15:09, Hu Tao wrote: The APIs are used to set/get domain's network interface's parameters. Currently supported parameters are bandwidth settings. * include/libvirt/libvirt.h.in: new API and parameters definition * python/generator.py: fix compiler errors It's not to fix

Re: [libvirt] [PATCHv2 2/5] virDomain{S, G}etInterfaceParameters: the main entry points

2011-12-27 Thread Osier Yang
On 2011年12月23日 15:09, Hu Tao wrote: * src/libvirt.c: implement the main entry points --- src/libvirt.c | 118 + 1 files changed, 118 insertions(+), 0 deletions(-) diff --git a/src/libvirt.c b/src/libvirt.c index 574be16..3d71d6f 100644

Re: [libvirt] [PATCHv2 3/5] Add virDomain{S, G}etInterfaceparameters support to the remote driver

2011-12-27 Thread Osier Yang
On 2011年12月23日 15:09, Hu Tao wrote: * daemon/remote.c: implement the server side support * src/remote/remote_driver.c: implement the client side support * src/remote/remote_protocol.x: definitions for the mew entry points s/mew/new/ * src/remote_protocol-structs: structure definitions ---

[libvirt] help for libvirt0.9.8 compile

2011-12-27 Thread hero
my redhat6.1 has a libvirt0.8.7, and I got a libvirt0.9.8.tar that I want to update the old one. when I use './configure --prefix=/usr --libdir=/usr/lib64 --localstatedir=/var --sysconfdir=/etc' it siad 'configure: error: You must install device-mapper-devel/libdevmapper = 1.0.0 to compile

Re: [libvirt] [PATCHv2 4/5] Add virDomain{S, G}etInterfaceParameters support to qemu driver

2011-12-27 Thread Osier Yang
On 2011年12月23日 15:09, Hu Tao wrote: * src/qemu/qemu_driver.c: implement the qemu driver support --- src/qemu/qemu_driver.c | 434 1 files changed, 434 insertions(+), 0 deletions(-) diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c

Re: [libvirt] help for libvirt0.9.8 compile

2011-12-27 Thread Alex Jia
On 12/28/2011 03:10 PM, hero wrote: my redhat6.1 has a libvirt0.8.7, and I got a libvirt0.9.8.tar that I want to update the old one. when I use './configure --prefix=/usr --libdir=/usr/lib64 --localstatedir=/var --sysconfdir=/etc' it siad 'configure: error: You must install

Re: [libvirt] [PATCHv2 5/5] Enable the virDomain{S, G}etInterfaceParameters in virsh

2011-12-27 Thread Osier Yang
On 2011年12月23日 15:09, Hu Tao wrote: Add a new command domiftune to get/set interface parameters. * tools/virsh.c: implement the new command * tools/virsh.pod: documentation of the new command --- tools/virsh.c | 198 +++ tools/virsh.pod