From: Yu Watanabe Date: Sun, 1 Dec 2024 05:46:40 +0000 (+0900) Subject: journald: extend STDOUT_STREAMS_MAX to 64k X-Git-Tag: v258-rc1~1931 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c576ba7182f54f352c03f0768c9178b173fb8bcb;p=thirdparty%2Fsystemd.git journald: extend STDOUT_STREAMS_MAX to 64k Closes #35390. --- diff --git a/src/journal/journald-stream.c b/src/journal/journald-stream.c index b019eda0d2f..f039a33ad28 100644 --- a/src/journal/journald-stream.c +++ b/src/journal/journald-stream.c @@ -40,7 +40,7 @@ #include "unit-name.h" #include "user-util.h" -#define STDOUT_STREAMS_MAX 4096 +#define STDOUT_STREAMS_MAX (64*1024) /* During the "setup" protocol phase of the stream logic let's define a different maximum line length than * during the actual operational phase. We want to allow users to specify very short line lengths after all,