]> git.karo-electronics.de Git - karo-tx-linux.git/commit
tcp: fix tcp_shifted_skb() adjustment of lost_cnt_hint for FACK
authorNeal Cardwell <ncardwell@google.com>
Mon, 13 Feb 2012 20:22:08 +0000 (20:22 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Mar 2012 00:31:05 +0000 (16:31 -0800)
commitc90fa02e73e931f959428385077213180f5c69eb
treec5300112cc9f11953d2ed9d93ea7a2209b5bed39
parent85a90ef604578b9825d3b7e9d1e3a103357bb668
tcp: fix tcp_shifted_skb() adjustment of lost_cnt_hint for FACK

[ Upstream commit 0af2a0d0576205dda778d25c6c344fc6508fc81d ]

This commit ensures that lost_cnt_hint is correctly updated in
tcp_shifted_skb() for FACK TCP senders. The lost_cnt_hint adjustment
in tcp_sacktag_one() only applies to non-FACK senders, so FACK senders
need their own adjustment.

This applies the spirit of 1e5289e121372a3494402b1b131b41bfe1cf9b7f -
except now that the sequence range passed into tcp_sacktag_one() is
correct we need only have a special case adjustment for FACK.

Signed-off-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/ipv4/tcp_input.c