Re: [libvirt] [PATCH] LXC: don't doubly link /dev/console

2014-05-07 Thread Dwight Engen
On Tue, 6 May 2014 11:27:47 +0100 Daniel P. Berrange berra...@redhat.com wrote: On Mon, May 05, 2014 at 11:14:18AM -0400, Dwight Engen wrote: When a console is configured, /dev/console and /dev/tty1 are created as symlinks to the same underlying pts. This causes problems since a separate

[libvirt] [PATCH] LXC: don't doubly link /dev/console

2014-05-05 Thread Dwight Engen
is the sole symlink to the first console, /dev/tty1 to the second, /dev/tty2 to the third and so on. Signed-off-by: Dwight Engen dwight.en...@oracle.com --- src/lxc/lxc_container.c | 34 ++ 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/src/lxc

[libvirt] [PATCH] build: add nwfilterxml2firewalldata to dist

2014-04-25 Thread Dwight Engen
Signed-off-by: Dwight Engen dwight.en...@oracle.com --- tests/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index ba79d64..4a5e14b 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -96,6 +96,7 @@ EXTRA_DIST

[libvirt] [PATCH] build: -avoid-version on libvirt_driver_nwfilter

2014-04-25 Thread Dwight Engen
This fixes the following make rpm warning: warning: Installed (but unpackaged) file(s) found: /usr/lib64/libvirt/connection-driver/libvirt_driver_nwfilter.so.0 /usr/lib64/libvirt/connection-driver/libvirt_driver_nwfilter.so.0.0.0 Signed-off-by: Dwight Engen dwight.en...@oracle.com --- src

[libvirt] [PATCH] build: fix missing include

2012-09-14 Thread Dwight Engen
virNWFilterSnoopAdjustPoll() uses a struct pollfd but poll.h is never included nwfilter/nwfilter_dhcpsnoop.c:1297: error: 'struct pollfd' declared inside parameter list --- src/nwfilter/nwfilter_dhcpsnoop.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git