Re: [systemd-devel] [PATCH 10/11] Avoid doubling the efforts for /var/log/journal

2014-06-20 Thread Lennart Poettering
On Fri, 13.06.14 16:41, Werner Fink (wer...@suse.de) wrote: fn = strappenda(/var/log/journal/, ids); -(void) mkdir(fn, 0755); +(void)mkdir(fn, 0755); + +/* + * On journaling and/or compressing file systems

Re: [systemd-devel] [PATCH 10/11] Avoid doubling the efforts for /var/log/journal

2014-06-19 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Jun 18, 2014 at 08:10:03PM +0200, Goffredo Baroncelli wrote: Hi Fink On 06/13/2014 04:41 PM, Werner Fink wrote: That is: set NOATIME, NOCOW, and NOCOMP for the journal directory If I read correctly, you want set UN-conditionally the NOCOW behavior. Please, please, please DON'T

Re: [systemd-devel] [PATCH 10/11] Avoid doubling the efforts for /var/log/journal

2014-06-18 Thread Dr. Werner Fink
On Mon, Jun 16, 2014 at 11:10:15AM -0400, Cristian Rodríguez wrote: El 13/06/14 10:41, Werner Fink escribió: That is: set NOATIME, NOCOW, and NOCOMP for the journal directory --- src/journal/journald-server.c | 29 +++-- 1 file changed, 27 insertions(+), 2

Re: [systemd-devel] [PATCH 10/11] Avoid doubling the efforts for /var/log/journal

2014-06-18 Thread Goffredo Baroncelli
Hi Fink On 06/13/2014 04:41 PM, Werner Fink wrote: That is: set NOATIME, NOCOW, and NOCOMP for the journal directory --- src/journal/journald-server.c | 29 +++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git src/journal/journald-server.c

Re: [systemd-devel] [PATCH 10/11] Avoid doubling the efforts for /var/log/journal

2014-06-16 Thread Cristian Rodríguez
El 13/06/14 10:41, Werner Fink escribió: That is: set NOATIME, NOCOW, and NOCOMP for the journal directory --- src/journal/journald-server.c | 29 +++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git src/journal/journald-server.c

[systemd-devel] [PATCH 10/11] Avoid doubling the efforts for /var/log/journal

2014-06-13 Thread Werner Fink
That is: set NOATIME, NOCOW, and NOCOMP for the journal directory --- src/journal/journald-server.c | 29 +++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git src/journal/journald-server.c src/journal/journald-server.c index eda5dcf..37d6dc3 100644 ---