aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_input.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r--net/ipv4/tcp_input.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 02fb66d4a018..13f3da4762e3 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -3208,9 +3208,10 @@ static void tcp_ack_probe(struct sock *sk)
3208 * This function is not for random using! 3208 * This function is not for random using!
3209 */ 3209 */
3210 } else { 3210 } else {
3211 unsigned long when = inet_csk_rto_backoff(icsk, TCP_RTO_MAX);
3212
3211 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0, 3213 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
3212 min(icsk->icsk_rto << icsk->icsk_backoff, TCP_RTO_MAX), 3214 when, TCP_RTO_MAX);
3213 TCP_RTO_MAX);
3214 } 3215 }
3215} 3216}
3216 3217