diff options
Diffstat (limited to 'net/ipv4/tcp_minisocks.c')
| -rw-r--r-- | net/ipv4/tcp_minisocks.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index f63c73dc0acb..6234ebaa7db1 100644 --- a/net/ipv4/tcp_minisocks.c +++ b/net/ipv4/tcp_minisocks.c @@ -464,7 +464,7 @@ struct sock *tcp_create_openreq_child(const struct sock *sk,  		newtp->srtt_us = 0;  		newtp->mdev_us = jiffies_to_usecs(TCP_TIMEOUT_INIT); -		newtp->rtt_min[0].rtt = ~0U; +		minmax_reset(&newtp->rtt_min, tcp_time_stamp, ~0U);  		newicsk->icsk_rto = TCP_TIMEOUT_INIT;  		newtp->packets_out = 0; @@ -487,6 +487,9 @@ struct sock *tcp_create_openreq_child(const struct sock *sk,  		newtp->snd_cwnd = TCP_INIT_CWND;  		newtp->snd_cwnd_cnt = 0; +		/* There's a bubble in the pipe until at least the first ACK. */ +		newtp->app_limited = ~0U; +  		tcp_init_xmit_timers(newsk);  		newtp->write_seq = newtp->pushed_seq = treq->snt_isn + 1; | 
