diff options
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r-- | net/ipv4/tcp_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index f844c06c0676..734cfc8ff76e 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
@@ -2964,7 +2964,7 @@ void tcp_rearm_rto(struct sock *sk) | |||
2964 | /* Try to schedule a loss probe; if that doesn't work, then schedule an RTO. */ | 2964 | /* Try to schedule a loss probe; if that doesn't work, then schedule an RTO. */ |
2965 | static void tcp_set_xmit_timer(struct sock *sk) | 2965 | static void tcp_set_xmit_timer(struct sock *sk) |
2966 | { | 2966 | { |
2967 | if (!tcp_schedule_loss_probe(sk)) | 2967 | if (!tcp_schedule_loss_probe(sk, true)) |
2968 | tcp_rearm_rto(sk); | 2968 | tcp_rearm_rto(sk); |
2969 | } | 2969 | } |
2970 | 2970 | ||