diff options
author | Yafang Shao <laoar.shao@gmail.com> | 2018-11-07 19:20:16 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-11-07 22:31:07 -0800 |
commit | 1295e2cf3065a55f35d112e4dfeb2c7322823249 (patch) | |
tree | eca7c4d056966400406e516f9cb77e2d0c0cc432 /net/ipv4/inet_connection_sock.c | |
parent | 7dad9937e064a6411cc3427f3f5870fa72132ad8 (diff) |
inet: minor optimization for backlog setting in listen(2)
Set the backlog earlier in inet_dccp_listen() and inet_listen(),
then we can avoid the redundant setting.
Signed-off-by: Yafang Shao <laoar.shao@gmail.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_connection_sock.c')
-rw-r--r-- | net/ipv4/inet_connection_sock.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c index 5c63449130d9..6ea523d71947 100644 --- a/net/ipv4/inet_connection_sock.c +++ b/net/ipv4/inet_connection_sock.c @@ -881,7 +881,6 @@ int inet_csk_listen_start(struct sock *sk, int backlog) reqsk_queue_alloc(&icsk->icsk_accept_queue); - sk->sk_max_ack_backlog = backlog; sk->sk_ack_backlog = 0; inet_csk_delack_init(sk); |