Skip to content

Commit

Permalink
tcp: reduce tcp_fastretrans_alert() verbosity
Browse files Browse the repository at this point in the history
With upcoming rb-tree implementation, the checks will trigger
more often, and this is expected.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Oct 6, 2017
1 parent 5e76ee4 commit 8ba6dda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/ipv4/tcp_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -2804,9 +2804,9 @@ static void tcp_fastretrans_alert(struct sock *sk, const int acked,
bool do_lost = is_dupack || ((flag & FLAG_DATA_SACKED) &&
(tcp_fackets_out(tp) > tp->reordering));

if (WARN_ON(!tp->packets_out && tp->sacked_out))
if (!tp->packets_out && tp->sacked_out)
tp->sacked_out = 0;
if (WARN_ON(!tp->sacked_out && tp->fackets_out))
if (!tp->sacked_out && tp->fackets_out)
tp->fackets_out = 0;

/* Now state machine starts.
Expand Down

0 comments on commit 8ba6dda

Please sign in to comment.