[systemd-devel] [PATCH 0/3] build-sys: do not require intltool when building from archive

2014-06-25 Thread Filipe Brandenburger
Hi Zbigniew, This set of patches does explicit handling of --disable-nls and some extra detection of intltool in order to make configure not fail when intltool is not present. It also ships the translated *.policy files in the distribution tarball. This makes it possible to build from an

[systemd-devel] [PATCH 2/3] build-sys: disable NLS support if intltool is not found

2014-06-25 Thread Filipe Brandenburger
IT_PROG_INTLTOOL makes configure fail if intltool is not present. If we can not find intltool, then disable NLS (otherwise make in po/ fails since MSGFMT will not be defined.) Tested: Built it on a host without intltool. $ ./configure --enable-nls ... checking for intltool-merge... no

[systemd-devel] [PATCH 3/3] build-sys: include PolicyKit files as part of distribution

2014-06-25 Thread Filipe Brandenburger
So that building from an archive works even if intltool is not present. The README file already mentioned that intltool should only be required when building from git. Tested: Built it from the distribution archive on a host without intltool. $ ./configure --enable-polkit $ make ---

[systemd-devel] [PATCH 1/3] build-sys: add explicit support for --diable-nls

2014-06-25 Thread Filipe Brandenburger
In particular, disable intltool when --disable-nls is passed to configure. Tested: Built it on a host without intltool or gettext. $ ./configure --disable-nls --disable-polkit $ make --- configure.ac | 10 ++ 1 file changed, 10 insertions(+) diff --git a/configure.ac b/configure.ac

Re: [systemd-devel] [PATCH 0/3] build-sys: do not require intltool when building from archive

2014-06-25 Thread Samuli Suominen
On 25/06/14 09:06, Filipe Brandenburger wrote: Hi Zbigniew, This set of patches does explicit handling of --disable-nls and some extra detection of intltool in order to make configure not fail when intltool is not present. For reference, we are using this workaround to disable intltool when

Re: [systemd-devel] [Cocci] systemd m4 library complex systemd example, and coccinelle conversion

2014-06-25 Thread Luis R. Rodriguez
On Mon, Jun 23, 2014 at 03:19:30PM +0200, Lennart Poettering wrote: On Thu, 12.06.14 18:04, Luis R. Rodriguez (mcg...@do-not-panic.com) wrote: Hey folks, so I've been working on getting systemd support on xen for a bit now and thanks to the last suggestion about the launcher here on

Re: [systemd-devel] [PATCH] networkd: Introduce tuntap device

2014-06-25 Thread Lennart Poettering
On Tue, 24.06.14 23:21, Susant Sahani (sus...@redhat.com) wrote: This patch introduces tuntap support to networkd. Example conf file : tuntap.netdev [NetDev] Name=tuntap-test Kind=tuntap [TUNTAP] Hm, maybe call this TunTap instead? Mode=tap OneQueue=true MultiQueue=true

Re: [systemd-devel] [RFC/PATCH 3/3] coredump: compress core files

2014-06-25 Thread Lennart Poettering
On Wed, 25.06.14 07:28, Zbigniew Jędrzejewski-Szmek (zbys...@in.waw.pl) wrote: Hi, a POC patch to compress coredumps after they are written. In my simple tests, this brings huge savings, because the compressed coredump can compress to ~5%. Unfortunately the core is first written

[systemd-devel] [RFC 1/8] (bugfix) undefined member, len, in struct kdbus_pool_slice

2014-06-25 Thread AKASHI Takahiro
Signed-off-by: AKASHI Takahiro takahiro.aka...@linaro.org --- pool.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pool.c b/pool.c index d896d9b..4267c54 100644 --- a/pool.c +++ b/pool.c @@ -623,7 +623,7 @@ void kdbus_pool_slice_flush(const struct kdbus_pool_slice

[systemd-devel] [RFC 2/8] (debug) add a debug message and others

2014-06-25 Thread AKASHI Takahiro
lib_dump and lib_verbose variables are used only in my benchmark programs for additional debug messages. You can ignore them for performance evaluation. Signed-off-by: AKASHI Takahiro takahiro.aka...@linaro.org --- test/kdbus-util.c |4 test/kdbus-util.h |3 +++ 2 files changed, 7

[systemd-devel] [RFC 8/8] add makefile flags to turn on and off my hacks

2014-06-25 Thread AKASHI Takahiro
KDBUS_HACKx: 1 = enabled, 0 = disabled Signed-off-by: AKASHI Takahiro takahiro.aka...@linaro.org --- Makefile |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c593b51..3b1 100644 --- a/Makefile +++ b/Makefile @@ -20,13 +20,15 @@ obj-m +=

[systemd-devel] [RFC 4/8] HACK0: allow meta information customizable

2014-06-25 Thread AKASHI Takahiro
My ftrace log shows that kdbus_meta_append(), is one of dominant functions in sending a message, while the other is kdbus_conn_queue_alloc(). This patch adds an extra argument to kdbus_hello() utility function and allows us to explicitly specify meta information attached to a message for

[systemd-devel] [RFC 3/8] test/kdbus-util: add lookup_name() for benchmark program

2014-06-25 Thread AKASHI Takahiro
Kdbus can use a name, instead of id, directly as a destination of message, while Android has an external service manager which is some kind of (service-)name lookup agent. By adding lookup_name() to kdbus utility, I'd like to retain the similarity between binder's and kdbus's bencharmk programs

[systemd-devel] [RFC 7/8] HACK3: minimize the range of D-Cache flush in ioctl(CMD_MSG_RECV)

2014-06-25 Thread AKASHI Takahiro
Current ioctl(CMD_MSG_RECV) contains an expensive cache operation. Even if the data is quite small, it always executes D-Cache flush on a buffer at minimum unit of one page in kdbus_conn_msg_install() / kdbus_pool_slice_flush() . In fact, flush_dcache_page() implementation is very expensive on ARM

[systemd-devel] [RFC 5/8] HACK1: optimize copy operations in kdbus_conn_queue_alloc()

2014-06-25 Thread AKASHI Takahiro
This function copies the reply message directly into receiver's buffer (pool slice). Looking into the implementation closely, however, there are multiple occurrences of copy operations, kdbus_pool_slice_copy(), which then executes costly prolog/epilog functions, say set_fs() and

[systemd-devel] [RFC 6/8] HACK2: blocking ioctl(CMD_MSG_RECV)

2014-06-25 Thread AKASHI Takahiro
In the current implementation, ioctl(CMD_MSG_RECV) returns immediately if no message has been queued, and so a service process has to wait by explicitly calling poll() system call. If such a process needs to wait only on a single connection, we can eliminate poll() system call by adding a

Re: [systemd-devel] [PATCH] networkd: Introduce tuntap device

2014-06-25 Thread Susant Sahani
On 06/25/2014 02:21 PM, Lennart Poettering wrote: On Tue, 24.06.14 23:21, Susant Sahani (sus...@redhat.com) wrote: This patch introduces tuntap support to networkd. Example conf file : tuntap.netdev [NetDev] Name=tuntap-test Kind=tuntap [TUNTAP] Hm, maybe call this TunTap instead?

Re: [systemd-devel] [PATCH] networkd: Introduce tuntap device

2014-06-25 Thread Susant Sahani
On 06/25/2014 02:51 PM, Susant Sahani wrote: On 06/25/2014 02:21 PM, Lennart Poettering wrote: On Tue, 24.06.14 23:21, Susant Sahani (sus...@redhat.com) wrote: This patch introduces tuntap support to networkd. Example conf file : tuntap.netdev [NetDev] Name=tuntap-test Kind=tuntap

Re: [systemd-devel] [RFC 1/8] (bugfix) undefined member, len, in struct kdbus_pool_slice

2014-06-25 Thread Daniel Mack
On 06/25/2014 11:13 AM, AKASHI Takahiro wrote: Signed-off-by: AKASHI Takahiro takahiro.aka...@linaro.org --- pool.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pool.c b/pool.c index d896d9b..4267c54 100644 --- a/pool.c +++ b/pool.c @@ -623,7 +623,7 @@ void

Re: [systemd-devel] [RFC 4/8] HACK0: allow meta information customizable

2014-06-25 Thread Daniel Mack
Hi, On 06/25/2014 11:13 AM, AKASHI Takahiro wrote: My ftrace log shows that kdbus_meta_append(), is one of dominant functions in sending a message, while the other is kdbus_conn_queue_alloc(). This patch adds an extra argument to kdbus_hello() utility function and allows us to explicitly

Re: [systemd-devel] [PATCH] networkd: Introduce tuntap device

2014-06-25 Thread Tom Gundersen
On Wed, Jun 25, 2014 at 11:38 AM, Susant Sahani sus...@redhat.com wrote: On 06/25/2014 02:51 PM, Susant Sahani wrote: On 06/25/2014 02:21 PM, Lennart Poettering wrote: On Tue, 24.06.14 23:21, Susant Sahani (sus...@redhat.com) wrote: This patch introduces tuntap support to networkd.

Re: [systemd-devel] [RFC 7/8] HACK3: minimize the range of D-Cache flush in ioctl(CMD_MSG_RECV)

2014-06-25 Thread Daniel Mack
On 06/25/2014 11:13 AM, AKASHI Takahiro wrote: Current ioctl(CMD_MSG_RECV) contains an expensive cache operation. Even if the data is quite small, it always executes D-Cache flush on a buffer at minimum unit of one page in kdbus_conn_msg_install() / kdbus_pool_slice_flush() . In fact,

[systemd-devel] systemd-networkd-wait-online and network.target

2014-06-25 Thread Michael Olbrich
Hi, Commit 58e027023b47b32e42cf93dd4a629b869ee1ef25 'units: order network-online.target after network.target' added Before=network.target dependency to systemd-networkd-wait-online.service. Is that correct? If I understand the documentation correctly, then network.target should not be delayed.

Re: [systemd-devel] [PATCH] networkd: Introduce tuntap device

2014-06-25 Thread Susant Sahani
On 06/25/2014 03:28 PM, Tom Gundersen wrote: On Wed, Jun 25, 2014 at 11:38 AM, Susant Sahani sus...@redhat.com wrote: On 06/25/2014 02:51 PM, Susant Sahani wrote: On 06/25/2014 02:21 PM, Lennart Poettering wrote: On Tue, 24.06.14 23:21, Susant Sahani (sus...@redhat.com) wrote: This patch

Re: [systemd-devel] [RFC 5/8] HACK1: optimize copy operations in kdbus_conn_queue_alloc()

2014-06-25 Thread Kay Sievers
On Wed, Jun 25, 2014 at 11:13 AM, AKASHI Takahiro takahiro.aka...@linaro.org wrote: This function copies the reply message directly into receiver's buffer (pool slice). Looking into the implementation closely, however, there are multiple occurrences of copy operations, kdbus_pool_slice_copy(),

Re: [systemd-devel] [RFC 6/8] HACK2: blocking ioctl(CMD_MSG_RECV)

2014-06-25 Thread Kay Sievers
On Wed, Jun 25, 2014 at 11:13 AM, AKASHI Takahiro takahiro.aka...@linaro.org wrote: In the current implementation, ioctl(CMD_MSG_RECV) returns immediately if no message has been queued, and so a service process has to wait by explicitly calling poll() system call. If such a process needs to

[systemd-devel] [PATCH] networkd: Introduce tun/tap device

2014-06-25 Thread Susant Sahani
This patch introduces TUN/TAP device creation support to networkd. Example conf to create a tap device: file: tap.netdev -- [NetDev] Name=tap-test Kind=tap [Tap] OneQueue=true MultiQueue=true PacketInfo=true -- Modifications: Added: 1. file networkd-tuntap.c 3.

Re: [systemd-devel] Systemd stops

2014-06-25 Thread Jay D Bhatt
Hi, Finally I was able to get the my systemd running for multi-user mode, so I got login , password and then I could login and get prompt. I removed few services which were hindering the progress and included serial-getty.service in my multi-user mode, that did the trick. Since this is only

Re: [systemd-devel] SIT tunnel does not work

2014-06-25 Thread Tomasz Torcz
On Sat, Jun 21, 2014 at 04:36:45PM +0530, Susant Sahani wrote: On 06/21/2014 02:47 PM, Tomasz Torcz wrote: Hi, I've tried to establish SIT tunnel to Hurricane Electric, using systemd v214. It does not work, device do not appear. I'm concerned about networkd discarding part of

[systemd-devel] [PATCH] core: Don't require cgroups xattr support

2014-06-25 Thread Tom Hirst
Failure to mount cgroups with xattr should not be fatal --- src/core/mount-setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/mount-setup.c b/src/core/mount-setup.c index 991bfdf..206f89a 100644 --- a/src/core/mount-setup.c +++ b/src/core/mount-setup.c @@ -94,7

[systemd-devel] [PATCH] rules: don't enable usb pm for Avocent devices

2014-06-25 Thread Tom Hirst
The Avocent KVM over IP devices doesn't work correctly with USB power management enabled. --- rules/42-usb-hid-pm.rules | 4 1 file changed, 4 deletions(-) diff --git a/rules/42-usb-hid-pm.rules b/rules/42-usb-hid-pm.rules index c675b5b..4c300da 100644 --- a/rules/42-usb-hid-pm.rules +++

Re: [systemd-devel] [RFC/PATCH 3/3] coredump: compress core files

2014-06-25 Thread Koen Kooi
Op 25 jun. 2014, om 10:59 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Wed, 25.06.14 07:28, Zbigniew Jędrzejewski-Szmek (zbys...@in.waw.pl) wrote: Hi, a POC patch to compress coredumps after they are written. In my simple tests, this brings huge savings,

Re: [systemd-devel] [Cocci] systemd m4 library complex systemd example, and coccinelle conversion

2014-06-25 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Jun 25, 2014 at 10:20:11AM +0200, Luis R. Rodriguez wrote: On Mon, Jun 23, 2014 at 03:19:30PM +0200, Lennart Poettering wrote: On Thu, 12.06.14 18:04, Luis R. Rodriguez (mcg...@do-not-panic.com) wrote: Hey folks, so I've been working on getting systemd support on xen for a

Re: [systemd-devel] [systemd-commits] man/systemctl.xml src/systemctl

2014-06-25 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Jun 25, 2014 at 03:32:12AM -0700, Lennart Poettering wrote: man/systemctl.xml | 17 + src/systemctl/systemctl.c | 26 ++ 2 files changed, 43 insertions(+) + termcommandis-system-running/command/term + + listitem

[systemd-devel] [PATCH] install: enable timesyncd by default

2014-06-25 Thread Michael Olbrich
This treats it similarly to networkd, resolved and others and it matches what 90-systemd.preset does. --- Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.am b/Makefile.am index 4b292b2..bfef1c3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4301,6 +4301,9 @@

[systemd-devel] [PATCH] core: use correct format string for UIDs

2014-06-25 Thread Michał Bartoszkiewicz
--- src/core/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/main.c b/src/core/main.c index 6981e72..8ee12ef 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1548,7 +1548,7 @@ int main(int argc, char *argv[]) { log_info(Running

Re: [systemd-devel] [PATCH] networkd: Introduce tun/tap device

2014-06-25 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Jun 25, 2014 at 04:13:39PM +0530, Susant Sahani wrote: This patch introduces TUN/TAP device creation support to networkd. Example conf to create a tap device: file: tap.netdev -- [NetDev] Name=tap-test Kind=tap [Tap] OneQueue=true MultiQueue=true

Re: [systemd-devel] [Cocci] systemd m4 library complex systemd example, and coccinelle conversion

2014-06-25 Thread Luis R. Rodriguez
On Wed, Jun 25, 2014 at 02:24:44PM +0200, Zbigniew Jędrzejewski-Szmek wrote: On Wed, Jun 25, 2014 at 10:20:11AM +0200, Luis R. Rodriguez wrote: On Mon, Jun 23, 2014 at 03:19:30PM +0200, Lennart Poettering wrote: On Thu, 12.06.14 18:04, Luis R. Rodriguez (mcg...@do-not-panic.com) wrote:

Re: [systemd-devel] [PATCH] rules: don't enable usb pm for Avocent devices

2014-06-25 Thread Cristian Rodríguez
El 25/06/14 07:57, Tom Hirst escribió: The Avocent KVM over IP devices doesn't work correctly with USB power management enabled. Doesn't this also require kernel side blacklisting ? ___ systemd-devel mailing list systemd-devel@lists.freedesktop.org

Re: [systemd-devel] systemd m4 library complex systemd example, and coccinelle conversion

2014-06-25 Thread Cristian Rodríguez
El 12/06/14 21:04, Luis R. Rodriguez escribió: - If you want to use the dynamic link loader you should use AX_AVAILABLE_SYSTEMD() but must then ensure to use -rdynamic -ldl when linking, if using automake autotools will deal with this for you, otherwise you must ensure

Re: [systemd-devel] systemd m4 library complex systemd example, and coccinelle conversion

2014-06-25 Thread Luis R. Rodriguez
On Wed, Jun 25, 2014 at 9:45 AM, Cristian Rodríguez crrodrig...@opensuse.org wrote: El 12/06/14 21:04, Luis R. Rodriguez escribió: - If you want to use the dynamic link loader you should use AX_AVAILABLE_SYSTEMD() but must then ensure to use -rdynamic -ldl when linking, if

Re: [systemd-devel] possible to run systemd-nspawn in a nested Xorg server?

2014-06-25 Thread Kai Krakow
Lennart Poettering lenn...@poettering.net schrieb: I wonder if it is possible to spawn systemd nspawn containers in a way that the login manager and GUI start up in a nested Xorg server so that I can run the container system in a window. I don't need the boot process in that window, just

Re: [systemd-devel] [PATCH] rules: don't enable usb pm for Avocent devices

2014-06-25 Thread Tom Hirst
El 25/06/14 07:57, Tom Hirst escribió: The Avocent KVM over IP devices doesn't work correctly with USB power management enabled. Doesn't this also require kernel side blacklisting ? I don't think so, as I understand it power/control defaults to on for everything except USB hubs and

Re: [systemd-devel] systemd m4 library complex systemd example, and coccinelle conversion

2014-06-25 Thread Cristian Rodríguez
El 25/06/14 13:00, Luis R. Rodriguez escribió: On Wed, Jun 25, 2014 at 9:45 AM, Cristian Rodríguez crrodrig...@opensuse.org wrote: El 12/06/14 21:04, Luis R. Rodriguez escribió: - If you want to use the dynamic link loader you should use AX_AVAILABLE_SYSTEMD() but must then ensure

Re: [systemd-devel] no fsck at boot

2014-06-25 Thread Chris Murphy
On Jun 24, 2014, at 8:46 PM, Andrey Borzenkov arvidj...@gmail.com wrote: В Tue, 24 Jun 2014 11:03:06 -0600 Chris Murphy li...@colorremedies.com пишет: On Jun 24, 2014, at 2:12 AM, Colin Guthrie gm...@colin.guthr.ie wrote: Well, the initramfs should mount the rootfs readonly, and then

[systemd-devel] Potential major bug in 214

2014-06-25 Thread Adam Williamson
Hi, folks. I'm about 90% sure there's a fairly significant bug in the systemd-sysv-generator that was introduced in 214. It's a bit complicated, and the full details are at https://bugs.freedesktop.org/show_bug.cgi?id=80537 . But the tl;dr summary is this: If there are any SysV initscripts in

[systemd-devel] Keyring service as a natural use-case for systemd?

2014-06-25 Thread Anatol Pomozov
Hi systemd community Last weeks I spent setting up identity caching at my Linux Arch machine. I wanted ssh-agent/gpg-agent functionality configured in a secure, clean and easy to manage way. Unfortunately more I learn about ssh-agent/gpg-agent/gnome keyring/envoy/Keychain more I dislike it. Both

Re: [systemd-devel] Potential major bug in 214

2014-06-25 Thread Michael Biebl
2014-06-25 23:18 GMT+02:00 Adam Williamson awill...@redhat.com: Hi, folks. I'm about 90% sure there's a fairly significant bug in the systemd-sysv-generator that was introduced in 214. It's a bit complicated, and the full details are at https://bugs.freedesktop.org/show_bug.cgi?id=80537 . But

Re: [systemd-devel] Potential major bug in 214

2014-06-25 Thread Adam Williamson
On Thu, 2014-06-26 at 00:01 +0200, Michael Biebl wrote: If there are any SysV initscripts in /etc/init.d that have: # Provides: $network That should translate to Wants=network.target Before=network.target i.e., the service is provider for network.target. network.target itself is a

Re: [systemd-devel] systemd m4 library complex systemd example, and coccinelle conversion

2014-06-25 Thread Luis R. Rodriguez
On Wed, Jun 25, 2014 at 11:32 AM, Cristian Rodríguez crrodrig...@opensuse.org wrote: El 25/06/14 13:00, Luis R. Rodriguez escribió: On Wed, Jun 25, 2014 at 9:45 AM, Cristian Rodríguez crrodrig...@opensuse.org wrote: El 12/06/14 21:04, Luis R. Rodriguez escribió: - If you want to use the

Re: [systemd-devel] Systemd stops

2014-06-25 Thread Steev Klimaszewski
On Tue, 2014-06-24 at 03:10 +, Jay D Bhatt wrote: Hi Steev, You are almost correct. I use IMX6 board with 3.0.35 kernel ,but board is sabreauto. Can you guide how you made systemd work or settings needed on these board? Thanks, Jay You just need to make sure that all (possible)

[systemd-devel] [PATCH] Add support for DHCP static route options in networkd

2014-06-25 Thread Eugene Yakubovich
This adds support for DHCP options 33 and 121: Static Route and Classless Static Route. To enable this feature, set UseRoutes=true in .network file. Returned routes are added to the routing table. --- man/systemd.network.xml | 7 ++

Re: [systemd-devel] [RFC 6/8] HACK2: blocking ioctl(CMD_MSG_RECV)

2014-06-25 Thread microcai
2014-06-25 18:30 GMT+08:00 Kay Sievers k...@vrfy.org: On Wed, Jun 25, 2014 at 11:13 AM, AKASHI Takahiro takahiro.aka...@linaro.org wrote: In the current implementation, ioctl(CMD_MSG_RECV) returns immediately if no message has been queued, and so a service process has to wait by explicitly

Re: [systemd-devel] [PATCH] man: systemd.net devwork

2014-06-25 Thread poma
On 20.06.2014 20:21, Tom Gundersen wrote: On Fri, Jun 20, 2014 at 8:12 PM, Lennart Poettering lenn...@poettering.net wrote: On Tue, 17.06.14 11:27, poma (pomidorabelis...@gmail.com) wrote: Hmm, can make this a proper git patch, i.e. with a useful commit msg we can just commit? That would make

Re: [systemd-devel] SIT tunnel does not work

2014-06-25 Thread Susant Sahani
On 06/25/2014 04:50 PM, Tomasz Torcz wrote: On Sat, Jun 21, 2014 at 04:36:45PM +0530, Susant Sahani wrote: On 06/21/2014 02:47 PM, Tomasz Torcz wrote: Hi, I've tried to establish SIT tunnel to Hurricane Electric, using systemd v214. It does not work, device do not appear. I'm concerned

Re: [systemd-devel] Potential major bug in 214

2014-06-25 Thread Adam Williamson
On 2014-06-25 15:43, Thomas H.P. Andersen wrote: On Thu, Jun 26, 2014 at 12:01 AM, Michael Biebl mbi...@gmail.com wrote: 2014-06-25 23:18 GMT+02:00 Adam Williamson awill...@redhat.com: Hi, folks. I'm about 90% sure there's a fairly significant bug in the systemd-sysv-generator that was

[systemd-devel] [PATCH resend] Add support for DHCP static route options in networkd

2014-06-25 Thread Eugene Yakubovich
This adds support for DHCP options 33 and 121: Static Route and Classless Static Route. To enable this feature, set UseRoutes=true in .network file. Returned routes are added to the routing table. --- man/systemd.network.xml | 7 ++

Re: [systemd-devel] [PATCH] core: use correct format string for UIDs

2014-06-25 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Jun 25, 2014 at 02:54:48PM +0200, Michał Bartoszkiewicz wrote: --- src/core/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/main.c b/src/core/main.c index 6981e72..8ee12ef 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1548,7 +1548,7 @@

Re: [systemd-devel] [PATCH] core: Don't require cgroups xattr support

2014-06-25 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Jun 25, 2014 at 11:45:45AM +, Tom Hirst wrote: Failure to mount cgroups with xattr should not be fatal --- src/core/mount-setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/mount-setup.c b/src/core/mount-setup.c index 991bfdf..206f89a 100644

Re: [systemd-devel] [PATCH] install: enable timesyncd by default

2014-06-25 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Jun 25, 2014 at 02:43:57PM +0200, Michael Olbrich wrote: This treats it similarly to networkd, resolved and others and it matches what 90-systemd.preset does. --- Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.am b/Makefile.am index 4b292b2..bfef1c3