]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
sd-bus: bump message queue size again
authorFranck Bui <fbui@suse.com>
Thu, 25 Apr 2019 05:52:16 +0000 (07:52 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 26 Apr 2019 07:59:02 +0000 (09:59 +0200)
Simliarly to issue #4068, the current limit turns out to be too small for a
big storage setup that uses many small disks. Let's bump it further.

src/libsystemd/sd-bus/bus-internal.h

index d7fcb9329b91ce7b4235344db13cf3cccafe0377..39610c5d450052a6acf38eb5f276d6800d05b913 100644 (file)
@@ -326,8 +326,8 @@ struct sd_bus {
  * with enough entropy yet and might delay the boot */
 #define BUS_AUTH_TIMEOUT ((usec_t) DEFAULT_TIMEOUT_USEC)
 
-#define BUS_WQUEUE_MAX (192*1024)
-#define BUS_RQUEUE_MAX (192*1024)
+#define BUS_WQUEUE_MAX (384*1024)
+#define BUS_RQUEUE_MAX (384*1024)
 
 #define BUS_MESSAGE_SIZE_MAX (128*1024*1024)
 #define BUS_AUTH_SIZE_MAX (64*1024)