Re: [systemd-devel] systemd hangs after Welcome message when LogLevel=debug

2014-01-18 Thread David Timothy Strauss
On Sat, Jan 18, 2014 at 8:45 AM, Dominique Michel wrote: > In /etc/fstab, we can set if a partition must be mounted or not at > boot time, but not if, in the case it must be mounted, that partition is > vital for the system (i.e. / or /var) and the system must wait for it to > be mounted, or if th

Re: [systemd-devel] .socket in a network namespace

2014-01-18 Thread David Timothy Strauss
JoinsNamespaceOf= probably only works for services because of how namespace setup gets done just before forking off a process. I think a socket get created in the namespace of the process instantiating it. I'm not sure there's actually a way for PID 1 systemd to set up a socket in a namespace othe

Re: [systemd-devel] [PATCH v2 6/8] add GOP mode setting and splash drawing support

2014-01-18 Thread Kay Sievers
On Fri, Jan 17, 2014 at 12:18 PM, Ylinen, Mikko wrote: >> Could we first try to optimize the BMP loader? Also, could you share >> your test image so I can have a look? > > > We've simply used the web page logo [1] exported using Gimp: > > $ identify gummiboot-icon3.bmp > gummiboot-icon3.bmp BMP 2

Re: [systemd-devel] [PATCH v2 6/8] add GOP mode setting and splash drawing support

2014-01-18 Thread Kay Sievers
On Thu, Jan 16, 2014 at 4:13 PM, Joonas Lahtinen wrote: > By our measurements, the original BGRX code only adds some 5 milliseconds to > the boot time compared to no logo at all, where the BMP code adds almost 70 > milliseconds. We can be quite a bit more efficient when pushing the pixels, I gue

Re: [systemd-devel] .socket in a network namespace

2014-01-18 Thread Alex Polvi
On Sat, Jan 18, 2014 at 7:45 AM, Peeters Simon wrote: > 2014/1/18 Alex Polvi : >> Hello, >> >> Is there a way to have a .socket bind in a particular network >> namespace? The use case is to have a container with isolated >> networking be able to start a service, or tunnel to a remote service, >> t

Re: [systemd-devel] systemd hangs after Welcome message when LogLevel=debug

2014-01-18 Thread Tom Gundersen
On Sat, Jan 18, 2014 at 5:45 PM, Dominique Michel wrote: > Le Fri, 17 Jan 2014 16:52:44 -0800, > David Timothy Strauss a écrit : > >> It would be nice if bootup could realize the journal queue is full and >> wait for journal startup before proceeding further. It might cause >> some annoying non-d

Re: [systemd-devel] [PATCH 1/4] sd-resolve: get rid of sd_resolve_freeanswer()

2014-01-18 Thread Tom Gundersen
Hi Daniel, Thanks a lot for the patches, they all look good. I'll push them out shortly. Cheers, Tom On Sat, Jan 18, 2014 at 4:07 PM, Daniel Buch wrote: > --- > TODO | 1 - > src/libsystemd/resolve-util.h | 2 -- > src/libsystemd/sd-resolve.c | 11 --- >

Re: [systemd-devel] systemd hangs after Welcome message when LogLevel=debug

2014-01-18 Thread Dominique Michel
Le Fri, 17 Jan 2014 16:52:44 -0800, David Timothy Strauss a écrit : > It would be nice if bootup could realize the journal queue is full and > wait for journal startup before proceeding further. It might cause > some annoying non-determinism, though. > > We primarily see the problem with the log

Re: [systemd-devel] .socket in a network namespace

2014-01-18 Thread Peeters Simon
2014/1/18 Alex Polvi : > Hello, > > Is there a way to have a .socket bind in a particular network > namespace? The use case is to have a container with isolated > networking be able to start a service, or tunnel to a remote service, > that exists outside the containers namespace. > > Thank you for

Re: [systemd-devel] [PATCH 4/4] sd-resolv: declare functions from .h public

2014-01-18 Thread Daniel Buch
Ooops, sorry about double post -.- 2014/1/18 Daniel Buch > --- > src/libsystemd/sd-resolve.c | 36 ++-- > 1 file changed, 18 insertions(+), 18 deletions(-) > > diff --git a/src/libsystemd/sd-resolve.c b/src/libsystemd/sd-resolve.c > index b6bf8d4..464967b 100644

[systemd-devel] [PATCH 3/4] sd-resolve: rename get_next() and get_n_queries() + cleanup

2014-01-18 Thread Daniel Buch
--- TODO| 1 - src/libsystemd/sd-resolve.c | 4 ++-- src/systemd/sd-resolve.h| 9 +++-- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/TODO b/TODO index 91a7bda..a842158 100644 --- a/TODO +++ b/TODO @@ -38,7 +38,6 @@ Features: - maybe simplify fun

[systemd-devel] [PATCH 1/4] sd-resolve: get rid of sd_resolve_freeanswer()

2014-01-18 Thread Daniel Buch
--- TODO | 1 - src/libsystemd/resolve-util.h | 2 -- src/libsystemd/sd-resolve.c | 11 --- src/libsystemd/test-resolve.c | 2 +- 4 files changed, 1 insertion(+), 15 deletions(-) diff --git a/TODO b/TODO index a567669..91a7bda 100644 --- a/TODO +++ b/TODO @@

[systemd-devel] [PATCH 4/4] sd-resolv: declare functions from .h public

2014-01-18 Thread Daniel Buch
--- src/libsystemd/sd-resolve.c | 36 ++-- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/libsystemd/sd-resolve.c b/src/libsystemd/sd-resolve.c index b6bf8d4..464967b 100644 --- a/src/libsystemd/sd-resolve.c +++ b/src/libsystemd/sd-resolve.c @@

[systemd-devel] [PATCH 2/4] sd-resolve: Allocate objects with new()

2014-01-18 Thread Daniel Buch
--- src/libsystemd/sd-resolve.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libsystemd/sd-resolve.c b/src/libsystemd/sd-resolve.c index 6958aa9..7cc8dc4 100644 --- a/src/libsystemd/sd-resolve.c +++ b/src/libsystemd/sd-resolve.c @@ -423,7 +423,7 @@ sd_resolve* sd_r

[systemd-devel] [PATCH 3/3] sd-resolve: rename get_next() and get_n_queries() + cleanup

2014-01-18 Thread Daniel Buch
--- TODO| 1 - src/libsystemd/sd-resolve.c | 4 ++-- src/systemd/sd-resolve.h| 9 +++-- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/TODO b/TODO index 91a7bda..a842158 100644 --- a/TODO +++ b/TODO @@ -38,7 +38,6 @@ Features: - maybe simplify fun

[systemd-devel] [PATCH 1/3] sd-resolve: get rid of sd_resolve_freeanswer()

2014-01-18 Thread Daniel Buch
--- TODO | 1 - src/libsystemd/resolve-util.h | 2 -- src/libsystemd/sd-resolve.c | 11 --- src/libsystemd/test-resolve.c | 2 +- 4 files changed, 1 insertion(+), 15 deletions(-) diff --git a/TODO b/TODO index a567669..91a7bda 100644 --- a/TODO +++ b/TODO @@

[systemd-devel] [PATCH 2/3] sd-resolve: Allocate objects with new()

2014-01-18 Thread Daniel Buch
--- src/libsystemd/sd-resolve.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libsystemd/sd-resolve.c b/src/libsystemd/sd-resolve.c index 6958aa9..7cc8dc4 100644 --- a/src/libsystemd/sd-resolve.c +++ b/src/libsystemd/sd-resolve.c @@ -423,7 +423,7 @@ sd_resolve* sd_r