mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
[NET]: Size listen hash tables using backlog hint
We currently allocate a fixed size (TCP_SYNQ_HSIZE=512) slots hash table for each LISTEN socket, regardless of various parameters (listen backlog for example) On x86_64, this means order-1 allocations (might fail), even for 'small' sockets, expecting few connections. On the contrary, a huge server wanting a backlog of 50000 is slowed down a bit because of this fixed limit. This patch makes the sizing of listen hash table a dynamic parameter, depending of : - net.core.somaxconn tunable (default is 128) - net.ipv4.tcp_max_syn_backlog tunable (default : 256, 1024 or 128) - backlog value given by user application (2nd parameter of listen()) For large allocations (bigger than PAGE_SIZE), we use vmalloc() instead of kmalloc(). We still limit memory allocation with the two existing tunables (somaxconn & tcp_max_syn_backlog). So for standard setups, this patch actually reduce RAM usage. Signed-off-by: Eric Dumazet <dada1@cosmosbay.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3c62f75aac
commit
72a3effaf6
9 changed files with 38 additions and 24 deletions
|
@ -138,7 +138,6 @@ extern void tcp_time_wait(struct sock *sk, int state, int timeo);
|
|||
#define MAX_TCP_SYNCNT 127
|
||||
|
||||
#define TCP_SYNQ_INTERVAL (HZ/5) /* Period of SYNACK timer */
|
||||
#define TCP_SYNQ_HSIZE 512 /* Size of SYNACK hash table */
|
||||
|
||||
#define TCP_PAWS_24DAYS (60 * 60 * 24 * 24)
|
||||
#define TCP_PAWS_MSL 60 /* Per-host timestamps are invalidated
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue