Re: [libvirt] [PATCH] qemu: Restore the original states of PCI device when restarting daemon

2011-10-29 Thread Osier Yang
于 2011年10月29日 07:00, Eric Blake 写道: On 10/20/2011 04:45 AM, Osier Yang wrote: This patch is to solve the problem by introducing internal XML (won't be dumped to user, only dumped to status XML). The XML is: Oh, I forgot to clarify this, will add when pushing. ... only for PCI device

Re: [libvirt] [PATCH] vbox: Add support for VirtualBox 4.1

2011-10-29 Thread Matthias Bolte
2011/10/25 Eric Blake : > On 10/23/2011 08:10 AM, Matthias Bolte wrote: >> >> Deal with the incompatible changes in the VirtualBox 4.1 API. >> >> INetworkAdapter has its different AttachTo* method replaced by >> a settable attachmentType property. >> >> The maximum number of network adapters is now

Re: [libvirt] [PATCH] vbox: Support shared folders

2011-10-29 Thread Matthias Bolte
2011/6/14 Eric Blake : > On 06/07/2011 05:38 AM, Matthias Bolte wrote: >> Shared folders are handled as filesystems and can also be hotplugged. >> --- >> >> Currently this just maps shared folder to a filesystem element with type >> mount. The filesystem element has an accessmode attribute that is

Re: [libvirt] [PATCH] xenapi: Improve error reporting in xenapiOpen once again

2011-10-29 Thread Matthias Bolte
2011/7/21 Eric Blake : > On 07/21/2011 07:17 AM, Matthias Bolte wrote: >> >> privP->session->error_description is a list and in order to get the >> complete error message all parts of the list should be concatenated. >> xenapiSessionErrorHandler does this when its third parameter is NULL. >> The cu

[libvirt] [PATCH] qemu: plug memory leak

2011-10-29 Thread ajia
From: Alex Jia Detected by Coverity. Leak introduced in commit 6cabc0b. * src/qemu/qemu_command.c: Clean up on failure. Signed-off-by: Alex Jia --- src/qemu/qemu_command.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command

[libvirt] [PATCH] daemon: plug memory leak

2011-10-29 Thread ajia
From: Alex Jia Detected by Coverity. Leak introduced in commit baf2ff7. * daemon/remote.c: Clean up on failure. Signed-off-by: Alex Jia --- daemon/remote.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/daemon/remote.c b/daemon/remote.c index f5141b9..173cd92 100644

Re: [libvirt] [PATCH] util: Fix virUUIDGeneratePseudoRandomBytes

2011-10-29 Thread Ryota Ozaki
On Sat, Oct 29, 2011 at 12:06 AM, Eric Blake wrote: > On 10/28/2011 05:06 AM, Ryota Ozaki wrote: >> >> It forgets to move a pointer to a buffer for UUID and as a result >> fills only the first byte of the buffer. >> --- >>  src/util/uuid.c |    2 +- >>  1 files changed, 1 insertions(+), 1 deletion