[systemd-devel] [PATCH] man: document the slice unit

2013-07-09 Thread Zbigniew Jędrzejewski-Szmek
--- Does this description fit the masterplan? What about units that systemd will expose for CPU and BlockIO shares, will they still be 1024 and 1000 based? Zbyszek PS. I think that apart from this we are still missing the .scope man page, which should be trivial to write. Makefile-man.am

Re: [systemd-devel] [PATCH] basic SO_REUSEPORT support

2013-07-09 Thread Lennart Poettering
On Tue, 09.07.13 13:01, Shawn ([email protected]) wrote: Heya, "reuse" is an english word, hence no need to put a middle capital letter in it, i.e. "ReUsePort" looks wrong, "ReusePort" looks better. The thing is a boolean, so it should have type "bool". It's not an int. Also, there are tab

Re: [systemd-devel] [PATCH] basic SO_REUSEPORT support

2013-07-09 Thread Lennart Poettering
On Tue, 09.07.13 16:28, Cristian Rodríguez ([email protected]) wrote: > It should IMHO all be wrapped in #ifdef SO_REUSEPORT No need for that, adding this to missing.h the way the patch did is sufficient. This feature won't work on newer kernels, but it's totally fine to compile that even

Re: [systemd-devel] [PATCH] basic SO_REUSEPORT support

2013-07-09 Thread Tomasz Torcz
On Tue, Jul 09, 2013 at 01:01:13PM -0700, Shawn wrote: > -- How do you envision using this? Does it even make sense with systemd-managed sockets? -- Tomasz Torcz Morality must always be based on practicality. xmpp: [email protected] Baron Vladimir Harkonne

Re: [systemd-devel] [PATCH] basic SO_REUSEPORT support

2013-07-09 Thread Cristian Rodríguez
El 09/07/13 16:01, Shawn escribió: It should IMHO all be wrapped in #ifdef SO_REUSEPORT ___ systemd-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/systemd-devel

[systemd-devel] [PATCH] basic SO_REUSEPORT support

2013-07-09 Thread Shawn
-- --- Shawn Landden +1 360 389 3001 (SMS preferred) 0001-basic-SO_REUSEPORT-support.patch Description: Binary data ___ systemd-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/systemd-devel

[systemd-devel] [PATCH 3/3 (rebased)] cryptsetup: Add tcrypt support

2013-07-09 Thread Jan Janssen
Tcrypt uses a different approach to passphrases/key files. The passphrase and all key files are incorporated into the "password" to open the volume. So, the idea of slots that provide a way to open the volume with different passphrases/key files that are independent from each other like with LUKS d

[systemd-devel] [PATCH] travis: Add a travis.yml for doing CI after commits

2013-07-09 Thread Holger Hans Peter Freyther
From: Holger Hans Peter Freyther Instruct travis-ci to build systemd and create a tarball. In case of an error travis-ci will complain on IRC. The systemd testsuite currently requires the host to have a recent version of systemd installed and running. This is not the case for the Ubuntu VM of tra

Re: [systemd-devel] Patch for Smack labelling support in udev

2013-07-09 Thread Reshetova, Elena
> -static int node_permissions_apply(struct udev_device *dev, bool > apply, mode_t mode, uid_t uid, gid_t gid) > +static int node_permissions_apply(struct udev_device *dev, bool apply, > mode_t mode, > + uid_t uid, gid_t gid, struct > +udev_list xattr_list) >Guess

Re: [systemd-devel] Patch for Smack labelling support in udev

2013-07-09 Thread Kay Sievers
On Tue, Jul 9, 2013 at 3:47 PM, Reshetova, Elena wrote: > Does the attached patch look better? I have fixed the sequence of xattr > processing (now just after uid, gid, mode and etc.) + switched to use a list > for collecting the xattrs. > I think it is more generic to allow many xattrs to be set

Re: [systemd-devel] Patch for Smack labelling support in udev

2013-07-09 Thread Reshetova, Elena
Hi, Does the attached patch look better? I have fixed the sequence of xattr processing (now just after uid, gid, mode and etc.) + switched to use a list for collecting the xattrs. I think it is more generic to allow many xattrs to be set for one node, since it is normal use case. Best Regards,

[systemd-devel] [PATCH 3/3] systemctl: remove unused variable

2013-07-09 Thread Lukas Nykryn
--- src/systemctl/systemctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 04464de..db7effa 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -1186,7 +1186,7 @@ static int list_dependencies(D

[systemd-devel] [PATCH 2/3] journald-server: r should be checked after journal_file_open_reliably

2013-07-09 Thread Lukas Nykryn
--- src/journal/journald-server.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/journal/journald-server.c b/src/journal/journald-server.c index 44ba916..6beaa8a 100644 --- a/src/journal/journald-server.c +++ b/src/journal/journald-server.c @@ -910,11 +910,12 @@ s

[systemd-devel] [PATCH 1/3] unit: check correct variable after strdup

2013-07-09 Thread Lukas Nykryn
--- src/core/unit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/unit.c b/src/core/unit.c index 447f201..b3f9832 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2302,7 +2302,7 @@ int unit_deserialize(Unit *u, FILE *f, FDSet *fds) { ch

Re: [systemd-devel] [PATCH] man: improve word usage and grammar in logind.conf(5)

2013-07-09 Thread Zbigniew Jędrzejewski-Szmek
On Tue, Jul 09, 2013 at 01:12:05PM +0200, Jason St. John wrote: > From: "Jason St. John" > > --- > man/logind.conf.xml | 33 + > 1 file changed, 17 insertions(+), 16 deletions(-) Applied. Zbyszek ___ systemd-devel maili

Re: [systemd-devel] [PATCH] man: wording and grammar updates

2013-07-09 Thread Zbigniew Jędrzejewski-Szmek
On Mon, Jul 08, 2013 at 06:19:02PM +0200, Jan Engelhardt wrote: > --- > man/machinectl.xml | 14 ++-- > man/systemctl.xml | 180 > - > man/systemd.journal-fields.xml | 8 +- > 3 files changed, 101 insertions(+), 101 deletions(-)

[systemd-devel] [PATCH] man: improve word usage and grammar in logind.conf(5)

2013-07-09 Thread Jason St. John
From: "Jason St. John" --- man/logind.conf.xml | 33 + 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/man/logind.conf.xml b/man/logind.conf.xml index 74a100e..8ab6d72 100644 --- a/man/logind.conf.xml +++ b/man/logind.conf.xml @@ -72,8 +72,8 @@