diff options
author | Eric Dumazet <edumazet@google.com> | 2019-01-17 11:23:39 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-01-17 22:19:05 -0800 |
commit | 5c701549c9a653a4335dbb2aecb4935de442b87d (patch) | |
tree | 79853fe73968b8f47942df6abdae610424f1e127 /net/ipv4/tcp_minisocks.c | |
parent | 5d836764620dfa3f243bdf5a678db300341195ef (diff) | |
download | linux-5c701549c9a653a4335dbb2aecb4935de442b87d.tar.gz linux-5c701549c9a653a4335dbb2aecb4935de442b87d.tar.bz2 linux-5c701549c9a653a4335dbb2aecb4935de442b87d.zip |
tcp: move retrans_out, sacked_out, tlp_high_seq, last_oow_ack_time init to tcp_disconnect()
If we make sure all listeners have these fields cleared, then a clone
will also inherit zero values.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_minisocks.c')
-rw-r--r-- | net/ipv4/tcp_minisocks.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index 2747aa72b8e2..29fba13849a7 100644 --- a/net/ipv4/tcp_minisocks.c +++ b/net/ipv4/tcp_minisocks.c @@ -482,12 +482,8 @@ struct sock *tcp_create_openreq_child(const struct sock *sk, minmax_reset(&newtp->rtt_min, tcp_jiffies32, ~0U); newicsk->icsk_ack.lrcvtime = tcp_jiffies32; - newtp->retrans_out = 0; - newtp->sacked_out = 0; - newtp->tlp_high_seq = 0; newtp->lsndtime = tcp_jiffies32; newsk->sk_txhash = treq->txhash; - newtp->last_oow_ack_time = 0; newtp->total_retrans = req->num_retrans; /* There's a bubble in the pipe until at least the first ACK. */ |