systemd: update to systemd-218

This commit is contained in:
Stefan Saraev
2014-12-11 19:48:11 +02:00
parent 62a25586c7
commit 98ae1135a4
11 changed files with 150 additions and 103 deletions

View File

@@ -0,0 +1,31 @@
From fcccd4547215855cc2d931546172f936a570ae01 Mon Sep 17 00:00:00 2001
From: Stefan Saraev <stefan@saraev.ca>
Date: Sat, 30 Nov 2013 13:16:37 +0200
Subject: [PATCH 2/8] journald: decrease limits
happy rpi users...
---
src/journal/journal-file.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c
index c5d2d19..8ffcb04 100644
--- a/src/journal/journal-file.c
+++ b/src/journal/journal-file.c
@@ -41,11 +41,11 @@
#define COMPRESSION_SIZE_THRESHOLD (512ULL)
/* This is the minimum journal file size */
-#define JOURNAL_FILE_SIZE_MIN (4ULL*1024ULL*1024ULL) /* 4 MiB */
+#define JOURNAL_FILE_SIZE_MIN (128ULL*1024ULL) /* 128 K */
/* These are the lower and upper bounds if we deduce the max_use value
* from the file system size */
-#define DEFAULT_MAX_USE_LOWER (1ULL*1024ULL*1024ULL) /* 1 MiB */
+#define DEFAULT_MAX_USE_LOWER (512ULL*1024ULL) /* 512 K */
#define DEFAULT_MAX_USE_UPPER (4ULL*1024ULL*1024ULL*1024ULL) /* 4 GiB */
/* This is the upper bound if we deduce max_size from max_use */
--
1.7.10.4