[libvirt] Performance about x-data-plane

2016-12-21 Thread Weiwei Jia
Hi, With QEMU x-data-plane, I find the performance has not been improved very much. Please see following two settings. Setting 1: I/O thread in host OS (VMM) reads 4KB each time from disk (8GB in total). Pin the I/O thread to pCPU 5 which will serve I/O thread dedicatedly. I find the performance

Re: [libvirt] [PATCH] NEWS: Update after virtio console on ppc64 fix

2016-12-21 Thread Shivaprasad G Bhat
Hi Andrea, On 12/21/2016 11:06 PM, Andrea Bolognani wrote: + qemu: Make virtio console usable on ppc64 guests + The chardev detection code has been improved and can now handle this + configuration properly. + Thanks for this patch. Missed it, I am yet to get

Re: [libvirt] [PATCH 1/2] configure: move gnutls check into virt-gnutls.m4

2016-12-21 Thread John Ferlan
On 10/24/2016 04:40 AM, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 109 > +- > m4/virt-gnutls.m4 | 64 > 2 files changed, 66 insertions(+), 107 deletions(-) > create mode 1

[libvirt] [PATCH] m4/virt-lib: use correct format of package name for AC_ARG_* macros

2016-12-21 Thread Pavel Hrdina
Introduced by commit 25034b3c40 and reused by commit 4519e94b743. This patch silences warning printed by configure: configure: WARNING: unrecognized options: --with-qemu-user Signed-off-by: Pavel Hrdina --- m4/virt-lib.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

Re: [libvirt] [PATCH RFC v3 01/15] storage pools: refactoring of basic structs

2016-12-21 Thread John Ferlan
On 12/21/2016 12:08 PM, Olga Krishtal wrote: > On 20/12/16 20:18, John Ferlan wrote: >> >> On 12/15/2016 12:16 PM, Olga Krishtal wrote: >>> Hi, John. >>> I needed some time to think over everything that you have written. >>> Thanks a lot. >> Yeah - I got too wordy, but this type of change caused

[libvirt] [PATCH] m4/virt-loader-nvram: use quotation for list of loader:nvram pairs

2016-12-21 Thread Pavel Hrdina
The bug was introduced by commit 08c2d1480b. The string must be quoted because it is used as function argument. Signed-off-by: Pavel Hrdina --- Pushed under build breaker rule. m4/virt-loader-nvram.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/virt-loader-nvram.m4

[libvirt] [PATCH v2 1/5] vz: report "scsi" bus for disks when nothing was set explixitly

2016-12-21 Thread Maxim Nestratov
This is necessary to show CTs created out of libvirt correctly. Signed-off-by: Maxim Nestratov --- src/vz/vz_sdk.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vz/vz_sdk.c b/src/vz/vz_sdk.c index 64748fa..2c8ce03 100644 --- a/src/vz/vz_sdk.c +++ b/src/vz/vz_sdk.c @@ -563,6 +563,7 @@ p

[libvirt] [PATCH v2 4/5] vz: set boot from disk for CT only when there is no root filesystem

2016-12-21 Thread Maxim Nestratov
Before, boot devices information for CTs was always empty and we didn't indicate that containers can boot from disk. Signed-off-by: Maxim Nestratov --- src/vz/vz_sdk.c | 25 ++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/src/vz/vz_sdk.c b/src/vz/vz_sdk.c

[libvirt] [PATCH v2 3/5] vz: report disks either as disks or filesystems depending on original xml

2016-12-21 Thread Maxim Nestratov
Virtuozzo SDK interface doesn't differ filesystems from disks and sees them as disks. Before, we always mistakenly presented disks based on files as filesystems, which is not completely correct. Now we are going to show either disks or filesystems depending on a hint, which uses boot device sect

[libvirt] [PATCH v2 0/5] vz: fix some CT disk representation cases and its statistics

2016-12-21 Thread Maxim Nestratov
v1-v2 changes - comments addressed Maxim Nestratov (5): vz: report "scsi" bus for disks when nothing was set explixitly vz: don't add implicit devices for CTs vz: report disks either as disks or filesystems depending on original xml vz: set boot from disk for CT only when there is no r

[libvirt] [PATCH v2 5/5] vz: get disks statistics for CTs

2016-12-21 Thread Maxim Nestratov
A CT disk statistics is reported with prefix "hdd" and we should use it to extract data. Signed-off-by: Maxim Nestratov --- src/vz/vz_driver.c | 10 -- src/vz/vz_sdk.c| 5 +++-- src/vz/vz_sdk.h| 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/vz/vz_dri

[libvirt] [PATCH v2 2/5] vz: don't add implicit devices for CTs

2016-12-21 Thread Maxim Nestratov
Implicit devices like controllers are confusing for CTs and function virDomainDefAddImplicitDevices never intended to be called for CTs. Signed-off-by: Maxim Nestratov --- src/vz/vz_sdk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vz/vz_sdk.c b/src/vz/vz_sdk.c index

Re: [libvirt] OSX Homebrew support note ;)

2016-12-21 Thread Andrea Bolognani
On Wed, 2016-12-21 at 09:55 +, Justin Clift wrote: > Hi all, >  > Compiling Libvirt directly from latest git master head is now supported > on > OSX Homebrew.  It's as simple as: >  >$ brew install --HEAD libvirt >... >$ virsh -v >3.0.0 >  > This should make development of Libvi

Re: [libvirt] [PATCH] Allow virtio-console on PPC64

2016-12-21 Thread Andrea Bolognani
On Wed, 2016-10-19 at 18:59 +0530, Shivaprasad G Bhat wrote: > virQEMUCapsSupportsChardev existing checks returns true > for spapr-vty alone. Instead verify spapr-vty validity > and let the logic to return true for other device types > so that virtio-console passes. >  > The non-pseries machines do

[libvirt] [PATCH] NEWS: Fix indentation

2016-12-21 Thread Andrea Bolognani
--- Pushed as trivial. docs/news.html.in | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/news.html.in b/docs/news.html.in index 5a34674..22611db 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -46,11 +46,11 @@ Bug fixes -

[libvirt] [PATCH] NEWS: Update after virtio console on ppc64 fix

2016-12-21 Thread Andrea Bolognani
--- docs/news.html.in | 4 1 file changed, 4 insertions(+) diff --git a/docs/news.html.in b/docs/news.html.in index 5a34674..5eea24f 100644 --- a/docs/news.html.in +++ b/docs/news.html.in @@ -52,6 +52,10 @@ for a qcow2 file backed storage that hasn't yet been opened on

Re: [libvirt] Cannot add iothreads label in libvirt xml configuration file

2016-12-21 Thread Weiwei Jia
Sorry to add my libvirt and qemu version. Libvirt version: 2.4.0 QEMU version: 2.3.0 Thanks, Weiwei Jia On Wed, Dec 21, 2016 at 12:11 PM, Weiwei Jia wrote: > Hi, > > I cannot add iothreads > (https://libvirt.org/formatdomain.html#elementsIOThreadsAllocation) in > the libvirt xml configuration

[libvirt] Cannot add iothreads label in libvirt xml configuration file

2016-12-21 Thread Weiwei Jia
Hi, I cannot add iothreads (https://libvirt.org/formatdomain.html#elementsIOThreadsAllocation) in the libvirt xml configuration file. Once I add "4" and other related config for IOthreads into the libvirt xml configuration file with virsh command and save it, these iothreads related configuration

Re: [libvirt] [PATCH RFC v3 01/15] storage pools: refactoring of basic structs

2016-12-21 Thread Olga Krishtal
On 20/12/16 20:18, John Ferlan wrote: On 12/15/2016 12:16 PM, Olga Krishtal wrote: Hi, John. I needed some time to think over everything that you have written. Thanks a lot. Yeah - I got too wordy, but this type of change caused me to think about other possible consumers too. With all this

Re: [libvirt] [PATCH 4/5] vz: report disks either as disks or filesystems depending on original xml

2016-12-21 Thread Maxim Nestratov
21-Dec-16 10:25, Nikolay Shirokovskiy пишет: On 09.12.2016 17:36, Maxim Nestratov wrote: Virtuozzo SDK interface doesn't differ filesystems from disks and sees them as disks. Before, we always mistakenly presented disks based on files as filesystems, which is not completely correct. Now we a

Re: [libvirt] [PATCH 2/2] qemu: migration: show disks stats for nbd migration

2016-12-21 Thread Jiri Denemark
On Tue, Dec 20, 2016 at 10:05:50 +0300, Nikolay Shirokovskiy wrote: > There is no disks statistics when migrating with VIR_MIGRATE_NON_SHARED_* > for qemu that supports nbd. The reason is that disks are copied via disk > mirroring > and not in the scope of migration job itself. Let's enhance > qe

Re: [libvirt] connecting to qemu domain monitor socket outside of libvirt/virsh

2016-12-21 Thread Eric Blake
On 12/20/2016 12:56 PM, Eric Blake wrote: > On 12/20/2016 12:48 PM, Jason Miesionczek wrote: >> Hi, >> >> So I see that when i have a qemu vm running, that i created via libvirt, >> there is a socket here: >> /var/lib/libvirt/qemu/domain-/monitor.sock >> > > Libvirt creates a QMP socket already.

Re: [libvirt] [PATCH v2] storage: vz storage pool support

2016-12-21 Thread Olga Krishtal
On 20/12/16 20:55, John Ferlan wrote: On 12/16/2016 06:14 AM, Olga Krishtal wrote: On 08/12/16 22:56, John Ferlan wrote: Compare that to NFS, which uses mount which is included in well every distro I can think of. That's a big difference. Also let's face it, NFS has been the essential de facto

Re: [libvirt] [PATCH 1/2] qemu: clean out unused migrate to unix

2016-12-21 Thread Jiri Denemark
On Tue, Dec 20, 2016 at 10:05:49 +0300, Nikolay Shirokovskiy wrote: > --- > src/qemu/qemu_migration.c | 40 ++-- > src/qemu/qemu_monitor.c | 24 > src/qemu/qemu_monitor.h | 4 > 3 files changed, 2 insertions(+), 66 deletions(-)

Re: [libvirt] [PATCH 00/89] configure cleanup and improvements

2016-12-21 Thread Pavel Hrdina
On Fri, Dec 16, 2016 at 09:28:12PM +0100, Jiri Denemark wrote: > On Fri, Dec 16, 2016 at 10:10:28 +0100, Pavel Hrdina wrote: > > Few bug fixes found along the way. > > Introduces new macro helpers to unify the configure.ac and m4 files. > > Moves libraries and drivers checks to its own files to cle

[libvirt] [PATCH go] Add support for virStorageVolGetInfoFlags & associated constants

2016-12-21 Thread Daniel P. Berrange
Signed-off-by: Daniel P. Berrange --- storage_volume.go| 24 storage_volume_compat.go | 47 +++ storage_volume_compat.h | 15 +++ 3 files changed, 86 insertions(+) create mode 100644 storage_volume_compat.g

[libvirt] [PATCH] Add virStorageVolGetInfoFlags & associated constants

2016-12-21 Thread Daniel P. Berrange
Signed-off-by: Daniel P. Berrange --- Changes| 1 + Virt.xs| 16 lib/Sys/Virt/StorageVol.pm | 16 ++-- 3 files changed, 27 insertions(+), 6 deletions(-) Pushed as a build fix diff --git a/Changes b/Changes index 48ac221..672b

Re: [libvirt] [PATCH] Add override impl for virStorageVolGetInfoFlags

2016-12-21 Thread John Ferlan
On 12/21/2016 08:17 AM, Daniel P. Berrange wrote: > Signed-off-by: Daniel P. Berrange > --- > generator.py | 1 + > libvirt-override-api.xml | 6 ++ > libvirt-override.c | 43 +++ > 3 files changed, 50 insertions(+) > > Pushed as

Re: [libvirt] [PATCH 61/89] m4/virt-libxl: properly check for required libxl version

2016-12-21 Thread Jiri Denemark
On Wed, Dec 21, 2016 at 14:14:25 +0100, Pavel Hrdina wrote: > On Wed, Dec 21, 2016 at 10:52:17AM +0100, Jiri Denemark wrote: > > On Fri, Dec 16, 2016 at 10:11:29 +0100, Pavel Hrdina wrote: > > > Signed-off-by: Pavel Hrdina > > > --- > > > m4/virt-driver-libxl.m4 | 18 -- > > > 1 f

Re: [libvirt] [PATCH 89/89] configure: group all storage driver check together

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:57 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 11 ++- > 1 file changed, 6 insertions(+), 5 deletions(-) ACK Jirka -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] [PATCH 33/89] configure: move windres check to its own file

2016-12-21 Thread Jiri Denemark
On Wed, Dec 21, 2016 at 15:08:04 +0100, Pavel Hrdina wrote: > On Tue, Dec 20, 2016 at 01:41:11PM +0100, Jiri Denemark wrote: > > On Fri, Dec 16, 2016 at 10:11:01 +0100, Pavel Hrdina wrote: > > > Signed-off-by: Pavel Hrdina > > > --- > > > configure.ac | 11 ++- > > > m4/virt-win

Re: [libvirt] [PATCH 33/89] configure: move windres check to its own file

2016-12-21 Thread Pavel Hrdina
On Tue, Dec 20, 2016 at 01:41:11PM +0100, Jiri Denemark wrote: > On Fri, Dec 16, 2016 at 10:11:01 +0100, Pavel Hrdina wrote: > > Signed-off-by: Pavel Hrdina > > --- > > configure.ac | 11 ++- > > m4/virt-win-windres.m4 | 34 ++ > > 2 files changed

Re: [libvirt] [PATCH 88/89] configure: move storage ZFS check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:56 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 34 +++--- > m4/virt-storage-zfs.m4 | 56 > ++ > 2 files changed, 59 insertions(+), 31 deletions(-) >

Re: [libvirt] [PATCH 86/89] configure: move storage Sheepdog check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:54 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac| 32 +++--- > m4/virt-storage-sheepdog.m4 | 56 > + > 2 files changed, 59 insertions(+), 29 deletions(-)

Re: [libvirt] [PATCH 87/89] configure: move storage Gluster check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:55 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 17 +++-- > m4/virt-storage-gluster.m4 | 43 +++ > 2 files changed, 46 insertions(+), 14 deletions(-) > create mode 1

Re: [libvirt] Loosing lxc guests when restarting libvirt

2016-12-21 Thread Cedric Bosdonnat
Hey Christian, On Tue, 2016-12-20 at 12:29 +0100, Christian Ehrhardt wrote: > Hi, > I found an issue in libvirt related to libvirt-lxc, but fail to find the root > cause. > > The TL;DR is: libvirt-lxc guests get killed on libvirt restart due to > "internal error: No valid cgroup for machine" >

Re: [libvirt] [PATCH 85/89] configure: move storage RBD check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:53 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 28 > m4/virt-storage-rbd.m4 | 49 + > 2 files changed, 53 insertions(+), 24 deletions(-) > crea

Re: [libvirt] [PATCH 84/89] configure: move storage disk check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:52 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac| 32 +++ > m4/virt-storage-disk.m4 | 58 > + > 2 files changed, 61 insertions(+), 29 deletions(-) >

Re: [libvirt] [PATCH 83/89] configure: move storage mpath check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:51 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 23 - > m4/virt-storage-mpath.m4 | 53 > > 2 files changed, 57 insertions(+), 19 deletions(-) > creat

Re: [libvirt] [PATCH 82/89] configure: move storage SCSI check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:50 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac| 13 +++-- > m4/virt-storage-scsi.m4 | 36 > 2 files changed, 39 insertions(+), 10 deletions(-) > create mode 100644 m4/virt-sto

[libvirt] [PATCH] Add override impl for virStorageVolGetInfoFlags

2016-12-21 Thread Daniel P. Berrange
Signed-off-by: Daniel P. Berrange --- generator.py | 1 + libvirt-override-api.xml | 6 ++ libvirt-override.c | 43 +++ 3 files changed, 50 insertions(+) Pushed as a build fix patch diff --git a/generator.py b/generator.py index 2c

Re: [libvirt] [PATCH 81/89] configure: move storage iSCSI check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:49 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 26 +++-- > m4/virt-storage-iscsi.m4 | 50 > > 2 files changed, 53 insertions(+), 23 deletions(-) > c

Re: [libvirt] [PATCH 61/89] m4/virt-libxl: properly check for required libxl version

2016-12-21 Thread Pavel Hrdina
On Wed, Dec 21, 2016 at 10:52:17AM +0100, Jiri Denemark wrote: > On Fri, Dec 16, 2016 at 10:11:29 +0100, Pavel Hrdina wrote: > > Signed-off-by: Pavel Hrdina > > --- > > m4/virt-driver-libxl.m4 | 18 -- > > 1 file changed, 12 insertions(+), 6 deletions(-) > > > > diff --git a/m4/v

Re: [libvirt] [PATCH 80/89] configure: move storage LVM check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:48 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 68 ++ > m4/virt-storage-lvm.m4 | 90 > ++ > 2 files changed, 93 insertions(+), 65 deleti

Re: [libvirt] [PATCH 79/89] configure: move storage fs check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:47 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 50 ++--- > m4/virt-storage-fs.m4 | 89 > +++ > 2 files changed, 92 insertions(+), 47 deletions(-) >

Re: [libvirt] [PATCH 77/89] configure: move AppArmor secdriver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:45 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 27 --- > m4/virt-secdriver-apparmor.m4 | 50 > +++ > 2 files changed, 54 insertions(+), 23 deletions(-) >

Re: [libvirt] [PATCH 78/89] configure: move storage dir check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:46 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 10 -- > m4/virt-storage-dir.m4 | 33 + > 2 files changed, 37 insertions(+), 6 deletions(-) > create mode 100644 m4/virt-storage-dir.

Re: [libvirt] [PATCH 76/89] configure: move SELinux secdriver check into its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:44 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 39 +++ > m4/virt-secdriver-selinux.m4 | 63 > > 2 files changed, 67 insertions(+), 35 deletions(-

Re: [libvirt] [PATCH 75/89] configure: group all virtualization drivers together

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:43 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 96 > > 1 file changed, 32 insertions(+), 64 deletions(-) ACK Jirka -- libvir-list mailing list libvir-list@redhat.com

Re: [libvirt] [PATCH 74/89] configure: move parallels version definition to m4/virt-driver-vz

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:42 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 2 -- > m4/virt-driver-vz.m4 | 2 ++ > 2 files changed, 2 insertions(+), 2 deletions(-) ACK Jirka -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/m

Re: [libvirt] [PATCH 73/89] configure: move interface driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:41 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac| 23 +++-- > m4/virt-driver-interface.m4 | 49 > + > 2 files changed, 52 insertions(+), 20 deletions(-) > cr

Re: [libvirt] [PATCH 72/89] configure: move network driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:40 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 24 +++--- > m4/virt-driver-network.m4 | 51 > +++ > 2 files changed, 54 insertions(+), 21 deletions(-) > cre

Re: [libvirt] [PATCH 71/89] configure: move libvirtd driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:39 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 14 +++--- > m4/virt-driver-libvirtd.m4 | 33 + > 2 files changed, 36 insertions(+), 11 deletions(-) > create mode 100644 m4/virt

Re: [libvirt] [PATCH 3/5] vz: don't add implicit devices for CTs

2016-12-21 Thread Maxim Nestratov
20-Dec-16 17:44, Nikolay Shirokovskiy пишет: On 09.12.2016 17:36, Maxim Nestratov wrote: Implicit devices like controllers are confusing for CTs as they are faked. Other devices like video we require to be specified explicitly. I would drop last sentence. prlsdkApplyVideoParams shows that we

Re: [libvirt] [PATCH 70/89] configure: move Hyper-V driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:38 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 22 +++--- > m4/virt-driver-hyperv.m4 | 47 +++ > 2 files changed, 50 insertions(+), 19 deletions(-) > create m

Re: [libvirt] [PATCH 69/89] configure: move ESX driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:37 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 31 +++- > m4/virt-driver-esx.m4 | 57 > +++ > 2 files changed, 60 insertions(+), 28 deletions(-) > c

Re: [libvirt] [PATCH 68/89] configure: move vbox driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:36 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 24 +++- > m4/virt-driver-vbox.m4 | 44 > 2 files changed, 47 insertions(+), 21 deletions(-) > create mode 1

Re: [libvirt] [PATCH 67/89] configure: move remote driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:35 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 10 +++--- > m4/virt-driver-remote.m4 | 33 + > 2 files changed, 36 insertions(+), 7 deletions(-) > create mode 100644 m4/virt-driver-r

[libvirt] [RFC] add option to bring new qemu binary/pending conf changes on reboot

2016-12-21 Thread Nikolay Shirokovskiy
Hi, all. I'm trying to reword the long pending RFC [1]. We interes

Re: [libvirt] [RFC] phi support in libvirt

2016-12-21 Thread Du, Dolpher
Shaohe was dropped from the loop, adding him back. > -Original Message- > From: He Chen [mailto:he.c...@linux.intel.com] > Sent: Friday, December 9, 2016 3:46 PM > To: Daniel P. Berrange > Cc: libvir-list@redhat.com; Du, Dolpher ; Zyskowski, > Robert ; Daniluk, Lukasz > ; Zang, Rui ; > jd

[libvirt] New libvirt maven releasing and issue with detach volume

2016-12-21 Thread Rohit Yadav
Hi, >From [1][2] I found the emails on your ML and owner of libvirt-java. I see several changes since last libvirt-java release 0.5.1, can we have a release please if those changes are critical for libvirt users? I've found and reported an issue with detach volume/disk that fails to remove the xm

Re: [libvirt] [PATCH 66/89] configure: move test driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:34 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 10 +++--- > m4/virt-driver-test.m4 | 33 + > 2 files changed, 36 insertions(+), 7 deletions(-) > create mode 100644 m4/virt-driver-test.

Re: [libvirt] [PATCH 65/89] configure: move PHYP driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:33 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 22 +++--- > m4/virt-driver-phyp.m4 | 48 > 2 files changed, 51 insertions(+), 19 deletions(-) > create mode

Re: [libvirt] New website missing link to the News page?

2016-12-21 Thread Justin Clift
On 2016-12-21 10:31, Daniel P. Berrange wrote: On Wed, Dec 21, 2016 at 10:25:34AM +, Justin Clift wrote: Hi all, With the new website, it still has the News page: https://libvirt.org/news.html But there doesn't seem to be a link to it from anywhere. Its linked from the front page and

[libvirt] [PATCH] Remove bogus \o escape in regex

2016-12-21 Thread Daniel P. Berrange
One of the regexes has a bogus \o instead of plain 'o'. Somehow this magically worked on all versions of python, until 3.6 came along and complained Signed-off-by: Daniel P. Berrange --- generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Pushed as a trival fix / python 3.6 build

Re: [libvirt] New website missing link to the News page?

2016-12-21 Thread Daniel P. Berrange
On Wed, Dec 21, 2016 at 10:25:34AM +, Justin Clift wrote: > Hi all, > > With the new website, it still has the News page: > > https://libvirt.org/news.html > > But there doesn't seem to be a link to it from anywhere. Its linked from the front page and the download page Regards, Daniel --

Re: [libvirt] connecting to qemu domain monitor socket outside of libvirt/virsh

2016-12-21 Thread Daniel P. Berrange
On Tue, Dec 20, 2016 at 01:48:44PM -0500, Jason Miesionczek wrote: > Hi, > > So I see that when i have a qemu vm running, that i created via libvirt, > there is a socket here: > /var/lib/libvirt/qemu/domain-/monitor.sock > > I am trying to connect to this socket via cli or a completely separate >

Re: [libvirt] [RFC] phi support in libvirt

2016-12-21 Thread Daniel P. Berrange
On Wed, Dec 21, 2016 at 12:51:29PM +0800, Feng, Shaohe wrote: > Thanks. Dolpher. > > Reply inline. > > > On 2016年12月21日 11:56, Du, Dolpher wrote: > > Shaohe was dropped from the loop, adding him back. > > > > > -Original Message- > > > From: He Chen [mailto:he.c...@linux.intel.com] > >

[libvirt] New website missing link to the News page?

2016-12-21 Thread Justin Clift
Hi all, With the new website, it still has the News page: https://libvirt.org/news.html But there doesn't seem to be a link to it from anywhere. Is that a bug? + Justin -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] [PATCH 2/5] vz: don't query boot devices information for VZ, set boot from disk always

2016-12-21 Thread Maxim Nestratov
20-Dec-16 13:50, Nikolay Shirokovskiy пишет: On 09.12.2016 17:36, Maxim Nestratov wrote: Before, boot devices information for CTs was always empty and we didn't indicate that containers always boot from disk. Signed-off-by: Maxim Nestratov --- src/vz/vz_sdk.c | 13 + 1 file ch

Re: [libvirt] [PATCH v3] qemu: report block job errors from qemu to the user

2016-12-21 Thread Nikolay Shirokovskiy
ping On 02.11.2016 12:15, Nikolay Shirokovskiy wrote: > So that you can see nice report on migration: > > "error: operation failed: migration of disk sda failed: No space left on > device" > > diff from v2: > 1. split into 2 patches > 2. change formal documentation where it is present according

[libvirt] OSX Homebrew support note ;)

2016-12-21 Thread Justin Clift
Hi all, Compiling Libvirt directly from latest git master head is now supported on OSX Homebrew. It's as simple as: $ brew install --HEAD libvirt ... $ virsh -v 3.0.0 This should make development of Libvirt and related virtualisation things much easier on OSX. :) The credit for th

Re: [libvirt] [PATCH 64/89] m4/virt-driver-xenapi: use LIBVIRT_CHECK_LIB macro

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:32 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > m4/virt-driver-xenapi.m4 | 50 > > 1 file changed, 8 insertions(+), 42 deletions(-) ACK Jirka -- libvir-list mailing list libvir-list@redhat.com h

Re: [libvirt] [PATCH] node_device: Check return value for udev_new()

2016-12-21 Thread Martin Kletzander
On Wed, Dec 21, 2016 at 10:35:47AM +0100, Marc Hartmayer wrote: On Thu, Dec 08, 2016 at 01:48 PM +0100, Martin Kletzander wrote: On Thu, Dec 01, 2016 at 01:52:03PM +0100, Marc Hartmayer wrote: On Wed, Nov 30, 2016 at 04:25 PM +0100, Martin Kletzander wrote: On Wed, Nov 30, 2016 at 01:45:32

Re: [libvirt] [PATCH 63/89] configure: move XenAPI driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:31 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 63 +++-- > m4/virt-driver-xenapi.m4 | 82 > > src/Makefile.am | 4 +-- > 3 file

Re: [libvirt] [PATCH 62/89] m4/virt-libxl: cleanup storing CFLAGS and LIBS variables

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:30 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > m4/virt-driver-libxl.m4 | 15 +-- > 1 file changed, 9 insertions(+), 6 deletions(-) ACK Jirka -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo

Re: [libvirt] [PATCH 61/89] m4/virt-libxl: properly check for required libxl version

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:29 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > m4/virt-driver-libxl.m4 | 18 -- > 1 file changed, 12 insertions(+), 6 deletions(-) > > diff --git a/m4/virt-driver-libxl.m4 b/m4/virt-driver-libxl.m4 > index 2fdeaa506e..498cad3240

[libvirt] RFC for support Intel RDT/CAT in libvirt

2016-12-21 Thread Qiao, Liyong
Hi folks I would like to start a discussion about how to support a new cpu feature in libvirt. CAT support is not fully merged into linux kernel yet, the target release is 4.10, and all patches has been merged into linux tip branch. So there won’t be interface/design changes. ## Background I

Re: [libvirt] [PATCH 60/89] m4/virt-libxl: use LIBVIRT_CHECK_(PKG|LIB) macros

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:28 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > m4/virt-driver-libxl.m4 | 43 +-- > 1 file changed, 13 insertions(+), 30 deletions(-) > > diff --git a/m4/virt-driver-libxl.m4 b/m4/virt-driver-libxl.m4 > ind

Re: [libvirt] [PATCH 59/89] configure: move libxl driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:27 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac| 84 ++ > m4/virt-driver-libxl.m4 | 105 > > 2 files changed, 109 insertions(+), 80 del

Re: [libvirt] [PATCH] node_device: Check return value for udev_new()

2016-12-21 Thread Marc Hartmayer
On Thu, Dec 08, 2016 at 01:48 PM +0100, Martin Kletzander wrote: > On Thu, Dec 01, 2016 at 01:52:03PM +0100, Marc Hartmayer wrote: >>On Wed, Nov 30, 2016 at 04:25 PM +0100, Martin Kletzander >> wrote: >>> On Wed, Nov 30, 2016 at 01:45:32PM +0100, Marc Hartmayer wrote: The comment was actuall

Re: [libvirt] [PATCH 58/89] configure: move XEN driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:26 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 103 ++--- > m4/virt-driver-xen.m4 | 126 > ++ > 2 files changed, 130 insertions(+), 99 de

Re: [libvirt] [PATCH 57/89] configure: move LXC driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:25 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 49 +++--- > m4/virt-driver-lxc.m4 | 74 > +++ > 2 files changed, 77 insertions(+), 46 deletions(-

Re: [libvirt] [PATCH 56/89] configure: move qemu bridge helper check to qemu driver file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:24 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 4 > m4/virt-driver-qemu.m4 | 6 ++ > 2 files changed, 6 insertions(+), 4 deletions(-) ACK Jirka -- libvir-list mailing list libvir-list@redhat.com https://www.re

Re: [libvirt] [PATCH 55/89] configure: move qemu privileges check to qemu driver file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:23 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 27 +-- > m4/virt-driver-qemu.m4 | 29 + > 2 files changed, 30 insertions(+), 26 deletions(-) ACK Jirka -- libvir-list

Re: [libvirt] [PATCH 54/89] configure: move QEMU driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:22 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 9 +++-- > m4/virt-driver-qemu.m4 | 33 + > 2 files changed, 36 insertions(+), 6 deletions(-) > create mode 100644 m4/virt-driver-qemu.m

Re: [libvirt] [PATCH 53/89] configure: move VMware driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:21 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 15 +++ > m4/virt-driver-vmware.m4 | 33 + > 2 files changed, 36 insertions(+), 12 deletions(-) > create mode 100644 m4/virt-dr

Re: [libvirt] [PATCH 52/89] configure: move OpenVZ driver check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:20 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 22 +++--- > m4/virt-driver-openvz.m4 | 42 ++ > 2 files changed, 45 insertions(+), 19 deletions(-) > create mode 1

Re: [libvirt] [PATCH 51/89] configure: group all Miscellaneous check together

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:19 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 72 > ++-- > 1 file changed, 26 insertions(+), 46 deletions(-) ACK Jirka -- libvir-list mailing list libvir-list@redhat.com

Re: [libvirt] [PATCH 50/89] configure: move debug check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:18 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 9 +++-- > m4/virt-debug.m4 | 33 + > 2 files changed, 36 insertions(+), 6 deletions(-) > create mode 100644 m4/virt-debug.m4 ACK Jirka --

Re: [libvirt] [PATCH 49/89] configure: move xml catalog file check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:17 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 9 +++-- > m4/virt-xml-catalog.m4 | 33 + > 2 files changed, 36 insertions(+), 6 deletions(-) > create mode 100644 m4/virt-xml-catalog.m

Re: [libvirt] [PATCH 48/89] configure: move TLS priority check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:16 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac| 10 +++--- > m4/virt-tls-priority.m4 | 33 + > 2 files changed, 36 insertions(+), 7 deletions(-) > create mode 100644 m4/virt-tls-priori

Re: [libvirt] [PATCH 47/89] configure: move default editor check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:15 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 6 +++--- > m4/virt-default-editor.m4 | 32 > 2 files changed, 35 insertions(+), 3 deletions(-) > create mode 100644 m4/virt-default-edi

Re: [libvirt] [PATCH 46/89] configure: move loader/nvram check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:14 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac| 17 +++-- > m4/virt-loader-nvram.m4 | 41 + > 2 files changed, 44 insertions(+), 14 deletions(-) > create mode 100644 m4

Re: [libvirt] [PATCH 45/89] configure: move chrdev lock files check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:13 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 29 +++- > m4/virt-chrdev-lock-files.m4 | 52 > > 2 files changed, 55 insertions(+), 26 deletions(-) >

Re: [libvirt] [PATCH 44/89] configure: move sysctl config check to its own file

2016-12-21 Thread Jiri Denemark
On Fri, Dec 16, 2016 at 10:11:12 +0100, Pavel Hrdina wrote: > Signed-off-by: Pavel Hrdina > --- > configure.ac | 22 ++ > m4/virt-sysctl.m4 | 43 +++ > 2 files changed, 45 insertions(+), 20 deletions(-) > create mode 100644 m4/virt