diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2007-12-31 07:43:32 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:00:20 -0500 |
commit | 3ccd3130b3f681a4aef6392327256786b3b6aa04 (patch) | |
tree | c22e270c30b6e1a61b6238b804c13bd9743e63c8 /net/ipv4 | |
parent | 61f1ab41b8ede8e2a26c349a4e3372100545c5ec (diff) |
[TCP]: Make invariant check complain about invalid sacked_out
Earlier resolution for NewReno's sacked_out should now keep
it small enough for this to become invariant-like check.
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/tcp_input.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 722c9cbb91e3..41f4b862319d 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
@@ -2504,11 +2504,8 @@ tcp_fastretrans_alert(struct sock *sk, int pkts_acked, int flag) | |||
2504 | (tcp_fackets_out(tp) > tp->reordering)); | 2504 | (tcp_fackets_out(tp) > tp->reordering)); |
2505 | int fast_rexmit = 0; | 2505 | int fast_rexmit = 0; |
2506 | 2506 | ||
2507 | /* Some technical things: | 2507 | if (WARN_ON(!tp->packets_out && tp->sacked_out)) |
2508 | * 1. Reno does not count dupacks (sacked_out) automatically. */ | ||
2509 | if (!tp->packets_out) | ||
2510 | tp->sacked_out = 0; | 2508 | tp->sacked_out = 0; |
2511 | |||
2512 | if (WARN_ON(!tp->sacked_out && tp->fackets_out)) | 2509 | if (WARN_ON(!tp->sacked_out && tp->fackets_out)) |
2513 | tp->fackets_out = 0; | 2510 | tp->fackets_out = 0; |
2514 | 2511 | ||