summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-11-09 14:31:51 +0100
committerLennart Poettering <lennart@poettering.net>2015-11-09 14:31:51 +0100
commit4286219103a7791ff9114b7dcc8e9938d154af3e (patch)
tree4ef603293298fd3679a9ee08a06321b80ec4ea24
parent2933d599c242ebfc70ddcffe59163916b02270f1 (diff)
parent16098e93792912f0086e365730972b9974633277 (diff)
Merge pull request #1796 from michaelolbrich/journal-size
journal: reduce minimum journal file size to 512 KiB
-rw-r--r--src/journal/journal-file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c
index e00a0d711d..f9ff9545dd 100644
--- a/src/journal/journal-file.c
+++ b/src/journal/journal-file.c
@@ -48,7 +48,7 @@
#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 (512ULL*1024ULL) /* 512 KiB */
/* These are the lower and upper bounds if we deduce the max_use value
* from the file system size */