From 10ace8f0e6b3707eb462ff313375efcc766bd9f8 Mon Sep 17 00:00:00 2001 From: sbesse-nam Date: Wed, 18 Jun 2025 08:58:24 -0400 Subject: [PATCH] Update af_unix.c to increase default max_dgram_qlen updated max_dgram_qlen, the default of 10 caused problems in BusyBox init system. This may be better to be in a Kconfig somewhere, but unsure where as this default is currently not configurable. --- net/unix/af_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 510b1d6758db7b..4e90a588681390 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -3517,7 +3517,7 @@ static int __net_init unix_net_init(struct net *net) { int i; - net->unx.sysctl_max_dgram_qlen = 10; + net->unx.sysctl_max_dgram_qlen = 512; if (unix_sysctl_register(net)) goto out;