From 09dad04c49cae3ad2b319c9b4e7773fedd34309a Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 15 Nov 2018 09:50:42 +0100 Subject: [PATCH] meson: let's bump RLIMIT_NOFILE hard limit to 512K Prompted by: https://lists.freedesktop.org/archives/systemd-devel/2018-October/041578.html --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 86e1c8932b..a46090ad47 100644 --- a/meson.build +++ b/meson.build @@ -75,7 +75,7 @@ conf.set10('HAVE_SYSV_COMPAT', sysvinit_path != '' and sysvrcnd_path != '', conf.set10('BUMP_PROC_SYS_FS_FILE_MAX', get_option('bump-proc-sys-fs-file-max')) conf.set10('BUMP_PROC_SYS_FS_NR_OPEN', get_option('bump-proc-sys-fs-nr-open')) -conf.set('HIGH_RLIMIT_NOFILE', 256*1024) +conf.set('HIGH_RLIMIT_NOFILE', 512*1024) # join_paths ignore the preceding arguments if an absolute component is # encountered, so this should canonicalize various paths when they are