tcp/dccp: install syn_recv requests into ehash table
In this patch, we insert request sockets into TCP/DCCP regular ehash table (where ESTABLISHED and TIMEWAIT sockets are) instead of using the per listener hash table. ACK packets find SYN_RECV pseudo sockets without having to find and lock the listener. In nominal conditions, this halves pressure on listener lock. Note that this will allow for SO_REUSEPORT refinements, so that we can select a listener using cpu/numa affinities instead of the prior 'consistent hash', since only SYN packets will apply this selection logic. We will shrink listen_sock in the following patch to ease code review. Signed-off-by: Eric Dumazet <edumazet@google.com> Cc: Ying Cai <ycai@google.com> Cc: Willem de Bruijn <willemb@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Loading
-
mentioned in commit e96f78ab
-
mentioned in commit 6bcfd7f8
-
mentioned in commit 4bdc3d66
-
mentioned in commit c2f34a65
-
mentioned in commit 5e0724d0
-
mentioned in commit ce105008
-
mentioned in commit 805c4bc0
-
mentioned in commit 9cf74903
-
mentioned in commit 72923555
-
Mentioned in commit e316ea62
Please register or sign in to comment