diff options
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r-- | net/ipv4/tcp_input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 901240f40688..26713e5d89db 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
@@ -1511,7 +1511,8 @@ tcp_sacktag_write_queue(struct sock *sk, struct sk_buff *ack_skb, u32 prior_snd_ | |||
1511 | 1511 | ||
1512 | tcp_verify_left_out(tp); | 1512 | tcp_verify_left_out(tp); |
1513 | 1513 | ||
1514 | if ((reord < tp->fackets_out) && icsk->icsk_ca_state != TCP_CA_Loss && | 1514 | if ((reord < tp->fackets_out) && |
1515 | ((icsk->icsk_ca_state != TCP_CA_Loss) || tp->undo_marker) && | ||
1515 | (!tp->frto_highmark || after(tp->snd_una, tp->frto_highmark))) | 1516 | (!tp->frto_highmark || after(tp->snd_una, tp->frto_highmark))) |
1516 | tcp_update_reordering(sk, tp->fackets_out - reord, 0); | 1517 | tcp_update_reordering(sk, tp->fackets_out - reord, 0); |
1517 | 1518 | ||