Re: [systemd-devel] [PATCH 1/2] test: sync the policy tests with the recent activators and policy holders changes

2014-08-05 Thread Kay Sievers
On Tue, Aug 5, 2014 at 3:09 AM, Djalal Harouni tix...@opendz.org wrote: Recent commit 7015a1e6746e0c2 prevents special-purpose connections from owning names, so update the test-kdbus-policy tests to follow and test these changes. Create a new policy holder connection which will register the

Re: [systemd-devel] [PATCH 0/3] more improvements on connection types checks

2014-08-05 Thread Kay Sievers
On Tue, Aug 5, 2014 at 3:46 AM, Djalal Harouni tix...@opendz.org wrote: This goes on top of the previous one: http://lists.freedesktop.org/archives/systemd-devel/2014-August/021747.html Kay, sorry it should be perhaps just be a one series, but I just noticed those bugs, so just send quick

[systemd-devel] [PATCH] ldconfig: add configure option to disable

2014-08-05 Thread Umut Tezduyar Lindskog
--- Makefile.am| 16 configure.ac |5 + units/ldconfig.service |1 - 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index ce8f247..41d6bb8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -489,8 +489,7 @@

[systemd-devel] [PATCH] socket: introduce SELinuxLabeledNet option

2014-08-05 Thread Michal Sekletar
This makes possible to spawn service instances triggered by socket with MLS/MCS SELinux labels which are created based on information provided by connected peer. Implementation of label_get_socket_label derived from xinetd. --- man/systemd.socket.xml| 11 ++

Re: [systemd-devel] [PATCH] ldconfig: add configure option to disable

2014-08-05 Thread Zbigniew Jędrzejewski-Szmek
On Tue, Aug 05, 2014 at 12:17:09PM +0200, Umut Tezduyar Lindskog wrote: --- Makefile.am| 16 configure.ac |5 + units/ldconfig.service |1 - 3 files changed, 17 insertions(+), 5 deletions(-) Dunno, the conditional seems much simpler, since

[systemd-devel] [networkd] intermittent failure to get DHCP lease on a bond interface

2014-08-05 Thread Leonid Isaev
Hi, Ever since updating to kernel 3.16, systemd-networkd very often fails to get a DHCPv4 lease on a bond interface. This happens irregularly which makes me suspect some kind of a race. The bond enslaves eth and wlan cards. Here is the config: -- /etc/systemd/network/bond0.netdev

[systemd-devel] [PATCH] Fix compilation under clang/LLVM

2014-08-05 Thread Dan McGee
Compilation is failing because we are doing something not allowed by the language spec, but OK by GCC extensions in our MAX() macro. src/resolve/resolved-manager.c:759:43: error: non-const static data member must be initialized out of line uint8_t

Re: [systemd-devel] [PATCH] Fix compilation under clang/LLVM

2014-08-05 Thread Greg KH
On Tue, Aug 05, 2014 at 07:58:47PM -0500, Dan McGee wrote: Compilation is failing because we are doing something not allowed by the language spec, but OK by GCC extensions in our MAX() macro. src/resolve/resolved-manager.c:759:43: error: non-const static data member must be initialized out

Re: [systemd-devel] [PATCH] Fix compilation under clang/LLVM

2014-08-05 Thread Dan McGee
On Tue, Aug 5, 2014 at 9:11 PM, Greg KH g...@kroah.com wrote: On Tue, Aug 05, 2014 at 07:58:47PM -0500, Dan McGee wrote: Compilation is failing because we are doing something not allowed by the language spec, but OK by GCC extensions in our MAX() macro.

Re: [systemd-devel] [PATCH] Fix compilation under clang/LLVM

2014-08-05 Thread Greg KH
On Tue, Aug 05, 2014 at 09:47:09PM -0500, Dan McGee wrote: On Tue, Aug 5, 2014 at 9:11 PM, Greg KH g...@kroah.com wrote: On Tue, Aug 05, 2014 at 07:58:47PM -0500, Dan McGee wrote: Compilation is failing because we are doing something not allowed by the language spec, but OK by