tcp: fix infinite cwnd in tcp_complete_cwr()
authorYuchung Cheng <ycheng@google.com>
Mon, 30 Apr 2012 06:00:18 +0000 (06:00 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Sun, 20 May 2012 21:56:37 +0000 (22:56 +0100)
commitb713f6c7d317c136f03c132203d0900f4a0de084
treee38c3751fb36d277a1c1207a99c480bb4599448d
parent63abb972410a091c02fdebc9d50287b79f1ea293
tcp: fix infinite cwnd in tcp_complete_cwr()

[ Upstream commit 1cebce36d660c83bd1353e41f3e66abd4686f215 ]

When the cwnd reduction is done, ssthresh may be infinite
if TCP enters CWR via ECN or F-RTO. If cwnd is not undone, i.e.,
undo_marker is set, tcp_complete_cwr() falsely set cwnd to the
infinite ssthresh value. The correct operation is to keep cwnd
intact because it has been updated in ECN or F-RTO.

Signed-off-by: Yuchung Cheng <ycheng@google.com>
Acked-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
net/ipv4/tcp_input.c