]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
def: add a "high" limit for RLIMIT_NOFILE
authorLennart Poettering <lennart@poettering.net>
Mon, 1 Oct 2018 15:37:01 +0000 (17:37 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 16 Oct 2018 14:33:55 +0000 (16:33 +0200)
This simply adds a new constant we can use for bumping RLIMIT_NOFILE to
a "high" value. It default to 256K for now, which is pretty high, but
smaller than the kernel built-in limit of 1M.

Previously, some tools that needed a higher RLIMIT_NOFILE bumped it to
16K. This new define goes substantially higher than this, following the
discussion with the kernel folks.

src/basic/def.h

index 4d515c11b6ac12066c1b81c523b817c0d1e7a043..05e352bc4f41c3104b0bdff122a9118f8d595e2d 100644 (file)
@@ -75,3 +75,5 @@
                 _CONF_PATHS_SPLIT_USR(n))
 
 #define LONG_LINE_MAX (1U*1024U*1024U)
+
+#define HIGH_RLIMIT_NOFILE (256*1024)