Re: [libvirt] [PATCH] blockcopy: check dst = identical device

2014-08-01 Thread Chun Yan Liu
On 7/31/2014 at 05:52 PM, in message 53DA11DB.FE6 : 102 : 21807, Chun Yan Liu wrote: On 7/31/2014 at 11:35 AM, in message 53d9b993.4040...@redhat.com, Eric Blake ebl...@redhat.com wrote: On 07/30/2014 09:29 PM, Chun Yan Liu wrote: A better idea would be to rely on the

Re: [libvirt] [libvirt-glib v3 3/4] Add GVirConfigDomainCpuModel class

2014-08-01 Thread Zeeshan Ali (Khattak)
On Fri, Jul 25, 2014 at 3:20 PM, Christophe Fergeau cferg...@redhat.com wrote: Hey, Looks good, ACK. It would have been worth adding support for 'fallback' and 'vendor_id' while you were digging in that code, easier than having to come back dive in that code later when that's needed imo.

Re: [libvirt] [RFC] Re: [PATCH 2/9] LXC: set IP addresses to veth devices in the container

2014-08-01 Thread Richard Weinberger
On Wed, Jul 30, 2014 at 8:14 PM, Cedric Bosdonnat cbosdon...@suse.com wrote: Hi all, On Fri, 2014-07-25 at 17:03 +0200, Cédric Bosdonnat wrote: Uses the new virDomainNetDef ips to set the IP addresses on the network interfaces in the container. --- src/lxc/lxc_container.c | 20

[libvirt] [Query] In search of 'lost' fc_host adapters ?

2014-08-01 Thread Prerna Saxena
Hi, I recently found that libvirt failed to display Fiber Channel adapters on systems with FC cards.This occured both on x86 as well as powerpc, as follows: virsh # nodedev-list --cap fc_host virsh # The system had legitimate fc_hosts : [root@localhost ~]# ls /sys/class/fc_host/ host1

[libvirt] [PATCH] Fix a crash when cloning a volume with no backing store

2014-08-01 Thread Ján Tomko
Introduced by commit 15213d1, not yet released. --- src/storage/storage_backend.c | 2 +- tests/storagevolxml2argvdata/qcow2-convert-nobacking.argv | 2 ++ tests/storagevolxml2argvtest.c| 3 +++ 3 files changed, 6 insertions(+), 1

Re: [libvirt] [PATCH] Fix a crash when cloning a volume with no backing store

2014-08-01 Thread Ján Tomko
On 08/01/2014 03:51 PM, Peter Krempa wrote: On 08/01/14 15:45, Ján Tomko wrote: Introduced by commit 15213d1, not yet released. --- src/storage/storage_backend.c | 2 +- tests/storagevolxml2argvdata/qcow2-convert-nobacking.argv | 2 ++

Re: [libvirt] [PATCH] Fix a crash when cloning a volume with no backing store

2014-08-01 Thread Peter Krempa
On 08/01/14 15:45, Ján Tomko wrote: Introduced by commit 15213d1, not yet released. --- src/storage/storage_backend.c | 2 +- tests/storagevolxml2argvdata/qcow2-convert-nobacking.argv | 2 ++ tests/storagevolxml2argvtest.c| 3 +++ 3

Re: [libvirt] [PATCH 1/1] qemu: Tidy up job handling during live migration

2014-08-01 Thread Ján Tomko
On 08/01/2014 03:12 AM, Sam Bobroff wrote: On 30/07/14 01:52, Ján Tomko wrote: On 07/29/2014 02:41 AM, Sam Bobroff wrote: During a QEMU live migration several warning messages about job handling could be written to syslog on the destination host: entering monitor without asking for a nested

[libvirt] [PATCH] qemu: fix comment in qemu.conf

2014-08-01 Thread Martin Kletzander
There are multiple mount points after commit 725a211f, but one comment wasn't changed to use plurals. Signed-off-by: Martin Kletzander mklet...@redhat.com --- src/qemu/qemu.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qemu/qemu.conf b/src/qemu/qemu.conf index

Re: [libvirt] [PATCH] qemu: fix comment in qemu.conf

2014-08-01 Thread Eric Blake
On 08/01/2014 08:06 AM, Martin Kletzander wrote: There are multiple mount points after commit 725a211f, but one comment wasn't changed to use plurals. Signed-off-by: Martin Kletzander mklet...@redhat.com --- src/qemu/qemu.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

[libvirt] [PATCH v2 2/2] Add configure option --enable-pc-1-0-qemu-kvm

2014-08-01 Thread Alex Bligh
Add a configure option --enable-pc-1-0-qemu-kvm and the corresponding --disable-pc-1-0-qemu-kvm, defaulting to disabled. Rename machine type pc-1.0 to pc-1.0-qemu-git. Make pc-1.0 machine type an alias of either pc-1.0-qemu-kvm or pc-1.0-qemu-git depending on the value of the config option.

[libvirt] [PATCH v2 0/2] Add machine type pc-1.0-qemu-kvm for live migrate compatibility with qemu-kvm

2014-08-01 Thread Alex Bligh
This patch series adds inbound migrate capability from qemu-kvm version 1.0. The main ideas are those set out in Cole Robinson's patch here: http://pkgs.fedoraproject.org/cgit/qemu.git/tree/0001-Fix-migration-from-qemu-kvm.patch?h=f20 however, rather than patching statically (and breaking inbound

[libvirt] [PATCH v2 1/2] Add machine type pc-1.0-qemu-kvm for live migrate compatibility with qemu-kvm

2014-08-01 Thread Alex Bligh
Add a machine type pc-1.0-qemu-kvm for live migrate compatibility with qemu-kvm version 1.0. Signed-off-by: Alex Bligh a...@alex.org.uk --- hw/acpi/piix4.c | 49 -- hw/i386/pc_piix.c| 31 +

[libvirt] [PATCH] network: always set disable_ipv6, even when it should be 0

2014-08-01 Thread Laine Stump
libvirt previously only touched an interface's disable_ipv6 setting in sysfs if it needed to be set to 1, assuming that 0 is the default. Apparently that isn't always the case though (kernel 3.15.7-1 in Arch Linux reportedly defaults a new interface's disable_ipv6 setting to 1) so this patch