netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: set default value for somaxconn
@ 2017-05-22 12:22 Roman Kapl
  2017-05-22 18:18 ` David Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Roman Kapl @ 2017-05-22 12:22 UTC (permalink / raw)
  To: davem, netdev; +Cc: Roman Kapl

The default value for somaxconn is set in sysctl_core_net_init(), but this
function is not called when kernel is configured without CONFIG_SYSCTL.

This results in the kernel not being able to accept TCP connections,
because the backlog has zero size. Usually, the user ends up with:
"TCP: request_sock_TCP: Possible SYN flooding on port 7. Dropping request.  Check SNMP counters."

Before ef547f2ac16 (tcp: remove max_qlen_log), the effects were less
severe, because the backlog was always at least eight slots long.

Signed-off-by: Roman Kapl <roman.kapl@sysgo.com>
---
 net/core/net_namespace.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c
index 1934efd..4f3bbff 100644
--- a/net/core/net_namespace.c
+++ b/net/core/net_namespace.c
@@ -37,6 +37,9 @@ EXPORT_SYMBOL_GPL(net_namespace_list);
 struct net init_net = {
 	.count		= ATOMIC_INIT(1),
 	.dev_base_head	= LIST_HEAD_INIT(init_net.dev_base_head),
+	.core = {
+		.sysctl_somaxconn = SOMAXCONN,
+	},
 };
 EXPORT_SYMBOL(init_net);
 
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-05-23 12:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-22 12:22 [PATCH] net: set default value for somaxconn Roman Kapl
2017-05-22 18:18 ` David Miller
2017-05-23 12:26   ` Roman Kapl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).