Re: [libvirt] [PATCH-RFC] qemu: Add network bandwidth setting for ethernet interfaces

2014-09-07 Thread Martin Kletzander
On Fri, Sep 05, 2014 at 11:42:58PM +, Anirban Chakraborty wrote: On 9/5/14, 1:31 AM, Martin Kletzander mklet...@redhat.com wrote: On Thu, Sep 04, 2014 at 03:02:54PM -0700, Anirban Chakraborty wrote: ethernet interfaces in libvirt currently do not support bandwidth setting. For example,

[libvirt] [PATCH] storage: zfs: implement pool build and delete

2014-09-07 Thread Roman Bogorodskiy
Provide an implementation for buildPool and deletePool operations for the ZFS storage backend. --- docs/schemas/storagepool.rng | 1 + src/storage/storage_backend_zfs.c | 57 +++ 2 files changed, 58 insertions(+) diff --git a/docs/schemas/storagepool.rng

Re: [libvirt] DHCP and secure containers

2014-09-07 Thread Gene Czarcinski
On 09/03/2014 09:42 AM, Gene Czarcinski wrote: On 09/02/2014 06:37 AM, Gene Czarcinski wrote: OK, hopefully this mailing list is more active and I can get some response to my questions.

[libvirt] ANNOUNCE: virt-manager 1.1.0 released

2014-09-07 Thread Cole Robinson
I'm happy to announce the release of virt-manager 1.1.0! virt-manager is a desktop application for managing KVM, Xen, and LXC virtualization via libvirt. The release can be downloaded from: http://virt-manager.org/download/ The direct download links are:

Re: [libvirt] DHCP and secure containers

2014-09-07 Thread Gene Czarcinski
On 09/07/2014 11:03 AM, Gene Czarcinski wrote: On 09/03/2014 09:42 AM, Gene Czarcinski wrote: On 09/02/2014 06:37 AM, Gene Czarcinski wrote: OK, hopefully this mailing list is more active and I can get some response to my questions.

Re: [libvirt] [PATCH-RFC] qemu: Add network bandwidth setting for ethernet interfaces

2014-09-07 Thread Anirban Chakraborty
On 9/7/14, 2:01 AM, Martin Kletzander mklet...@redhat.com wrote: On Fri, Sep 05, 2014 at 11:42:58PM +, Anirban Chakraborty wrote: On 9/5/14, 1:31 AM, Martin Kletzander mklet...@redhat.com wrote: On Thu, Sep 04, 2014 at 03:02:54PM -0700, Anirban Chakraborty wrote: snip It doesn't,

Re: [libvirt] [PATCH-RFC] qemu: Add network bandwidth setting for ethernet interfaces

2014-09-07 Thread Anirban Chakraborty
On 9/5/14, 8:52 AM, Laine Stump la...@laine.org wrote: On 09/05/2014 04:31 AM, Martin Kletzander wrote: On Thu, Sep 04, 2014 at 03:02:54PM -0700, Anirban Chakraborty wrote: ethernet interfaces in libvirt currently do not support bandwidth setting. For example, following xml file for an

[libvirt] [PATCH 0/5] Fix problems caused by FD passing to session daemon

2014-09-07 Thread Martin Kletzander
There were various problems introduced by the series on FD passing. The path for the socket was not created, the socket was not removed before binding it, etc. Let's see if it's any better this time. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=927369 Resolves:

[libvirt] [PATCH] rpc: reformat the flow to make a bit more sense

2014-09-07 Thread Martin Kletzander
Signed-off-by: Martin Kletzander mklet...@redhat.com --- src/rpc/virnetsocket.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/rpc/virnetsocket.c b/src/rpc/virnetsocket.c index 586a0d7..42184bd 100644 --- a/src/rpc/virnetsocket.c +++ b/src/rpc/virnetsocket.c @@

[libvirt] [PATCH 2/5] remove redundant pidfile path constructions

2014-09-07 Thread Martin Kletzander
Signed-off-by: Martin Kletzander mklet...@redhat.com --- daemon/libvirtd.c | 41 --- src/libvirt_private.syms | 1 + src/locking/lock_daemon.c | 42 src/util/virpidfile.c | 49

[libvirt] [PATCH 3/5] util: fix potential leak in error codepath

2014-09-07 Thread Martin Kletzander
Signed-off-by: Martin Kletzander mklet...@redhat.com --- src/util/virpidfile.c | 19 ++- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/util/virpidfile.c b/src/util/virpidfile.c index 19ec103..dd29701 100644 --- a/src/util/virpidfile.c +++

[libvirt] [PATCH 4/5] util: get rid of unnecessary umask() call

2014-09-07 Thread Martin Kletzander
Signed-off-by: Martin Kletzander mklet...@redhat.com --- src/util/virpidfile.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/util/virpidfile.c b/src/util/virpidfile.c index dd29701..a3b8846 100644 --- a/src/util/virpidfile.c +++ b/src/util/virpidfile.c @@

[libvirt] [PATCH] util: let virSetSockReuseAddr report unified error message

2014-09-07 Thread Martin Kletzander
Signed-off-by: Martin Kletzander mklet...@redhat.com --- src/rpc/virnetsocket.c | 7 ++- src/util/virportallocator.c | 5 + src/util/virutil.c | 13 ++--- src/util/virutil.h | 2 +- 4 files changed, 14 insertions(+), 13 deletions(-) diff --git

[libvirt] [PATCH 5/5] rpc: make daemon spawning a bit more intelligent

2014-09-07 Thread Martin Kletzander
This way it behaves more like the daemon itself does (acquiring a pidfile, deleting the socket before binding, etc.). Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=927369 Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1138604 Signed-off-by: Martin Kletzander mklet...@redhat.com