Re: [systemd-devel] [PATCH 2/2] udev: fix for devices without PCI

2013-05-02 Thread Koen Kooi
Op 3 mrt. 2013, om 19:22 heeft Kay Sievers het volgende geschreven: > On Sun, Mar 3, 2013 at 7:10 PM, Rob Clark wrote: >> On Sun, Mar 3, 2013 at 1:06 PM, Kay Sievers wrote: >>> On Sun, Mar 3, 2013 at 6:55 PM, Rob Clark wrote: On many arm embedded SoC's (phones, tablets, etc), there is n

[systemd-devel] audit paranoia breaks tests

2013-05-02 Thread Zbigniew Jędrzejewski-Szmek
Hm, one of our tests fails because /usr/lib/systemd/system/auditd.service is -rw-r-. That's crazy. Do we fight it, or work around it? Zbyszek ___ systemd-devel mailing list systemd-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/list

Re: [systemd-devel] [PATCH] test-hashmap.c: added unit-test for hashmap

2013-05-02 Thread Kay Sievers
On Thu, May 2, 2013 at 11:50 PM, Daniel Buch wrote: > Updated version Applied. Thanks a lot for doing all that, Kay ___ systemd-devel mailing list systemd-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/systemd-devel

[systemd-devel] [PATCH] test-hashmap.c: added unit-test for hashmap

2013-05-02 Thread Daniel Buch
Updated version --- Makefile.am | 12 +- src/test/test-hashmap.c | 508 2 files changed, 519 insertions(+), 1 deletion(-) create mode 100644 src/test/test-hashmap.c diff --git a/Makefile.am b/Makefile.am index 9e0f5fb..d50ab3d 100644

Re: [systemd-devel] [PATCH] Dynamically allocate bootchart logs

2013-05-02 Thread Kok, Auke-jan H
On Wed, Apr 24, 2013 at 4:26 PM, Nathaniel Chen wrote: > Instead of storing bootchart sample data in arrays, this patch moves > storage to linked lists so that there is no more limit on samples. > > This patch also fixes parsing of /proc//smaps in kernels > 3.7. > --- > src/bootchart/bootchart.c

Re: [systemd-devel] [PATCH] Add help option to bootchart man page

2013-05-02 Thread Kok, Auke-jan H
On Fri, Apr 26, 2013 at 9:36 AM, Nathaniel Chen wrote: > Bootchart has a help option. For the sake of consistency, this patch > adds it to the man page. > > Also, the TODO is updated. Bootcharts were added to the journal in > commit c4d58b0. applied, thanks. Auke

Re: [systemd-devel] Fedora 16 and upstart

2013-05-02 Thread Mirco Tischler
2013/5/2 Chinmay Mahata > Hi All, > Sorry for asking such a noob question. > > I am migrating my system from fedora 13 (fc13) to fedora 16 64-bit (fc16 > x86_64) version. In fc13 all our module service scripts are written for > upstart/initctl. In fc16, there is no upstart/initctl support any

Re: [systemd-devel] Fedora 16 and upstart

2013-05-02 Thread Kay Sievers
On Thu, May 2, 2013 at 4:58 PM, Chinmay Mahata wrote: > > Hi All, > Sorry for asking such a noob question. > > I am migrating my system from fedora 13 (fc13) to fedora 16 64-bit (fc16 > x86_64) version. In fc13 all our module service scripts are written for > upstart/initctl. In fc16, there

[systemd-devel] Fedora 16 and upstart

2013-05-02 Thread Chinmay Mahata
Hi All,     Sorry for asking such a noob question. I am migrating my system from fedora 13 (fc13) to fedora 16 64-bit (fc16 x86_64) version. In fc13 all our module service scripts are written for upstart/initctl. In fc16, there is no upstart/initctl support any more, but there is systemd as the

Re: [systemd-devel] [RFC][PATCH] Escape unit name from udev

2013-05-02 Thread MUNEDA Takahiro
On Tue, 23 Apr 2013 13:34:38 -0400, MUNEDA Takahiro wrote: > This patch escapes a unit name which was derived from udev. > > Please imagine following udev rule. > >ACTION=="online|offline", TAG+="systemd", > ENV{SYSTEMD_WANTS}="muneda@%p.service" >ACTION=="online|offline", TAG+="system

Re: [systemd-devel] [PATCH] test-hashmap.c: added unit-test for hashmap

2013-05-02 Thread Kay Sievers
On Thu, May 2, 2013 at 10:31 AM, Daniel Buch wrote: > Thanks for review, kay! > > I adabted the code. So trivial_cmp() is tested with INT_TO_PTR('a') - i > guess its ok to use 'a' since its evaulated to int? > The casts.. Dont know :p they are removed :) Sounds good. You sent the update already?

Re: [systemd-devel] %i/%I instance expansion in ExecStartPre ?

2013-05-02 Thread Colin Guthrie
'Twas brillig, and d...@sent.com at 01/05/13 16:56 did gyre and gimble: > hi zbigniew > > On Wed, May 1, 2013, at 08:32 AM, Zbigniew Jędrzejewski-Szmek wrote: >> On Wed, May 01, 2013 at 08:29:57AM -0700, d...@sent.com wrote: >>> Is %i/%I expansion in ExecStartPre possible? and/or have I misconfigu

Re: [systemd-devel] [PATCH] test-hashmap.c: added unit-test for hashmap

2013-05-02 Thread Daniel Buch
Thanks for review, kay! I adabted the code. So trivial_cmp() is tested with INT_TO_PTR('a') - i guess its ok to use 'a' since its evaulated to int? The casts.. Dont know :p they are removed :) 2013/4/26 Kay Sievers > On Fri, Apr 26, 2013 at 8:49 PM, Daniel Buch > wrote: > > Version 2, with le