diff options
author | Yan, Zheng <zheng.z.yan@intel.com> | 2011-10-02 00:21:50 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-10-04 23:31:24 -0400 |
commit | 1e5289e121372a3494402b1b131b41bfe1cf9b7f (patch) | |
tree | bbab77cce265f29d9b494446fd0eb0a0819878d6 /net | |
parent | 260fcbeb1ae9e768a44c9925338fbacb0d7e5ba9 (diff) |
tcp: properly update lost_cnt_hint during shifting
lost_skb_hint is used by tcp_mark_head_lost() to mark the first unhandled skb.
lost_cnt_hint is the number of packets or sacked packets before the lost_skb_hint;
When shifting a skb that is before the lost_skb_hint, if tcp_is_fack() is ture,
the skb has already been counted in the lost_cnt_hint; if tcp_is_fack() is false,
tcp_sacktag_one() will increase the lost_cnt_hint. So tcp_shifted_skb() does not
need to adjust the lost_cnt_hint by itself. When shifting a skb that is equal to
lost_skb_hint, the shifted packets will not be counted by tcp_mark_head_lost().
So tcp_shifted_skb() should adjust the lost_cnt_hint even tcp_is_fack(tp) is true.
Signed-off-by: Zheng Yan <zheng.z.yan@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/tcp_input.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 21fab3edb92c..d73aab3fbfc0 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
@@ -1389,9 +1389,7 @@ static int tcp_shifted_skb(struct sock *sk, struct sk_buff *skb, | |||
1389 | 1389 | ||
1390 | BUG_ON(!pcount); | 1390 | BUG_ON(!pcount); |
1391 | 1391 | ||
1392 | /* Tweak before seqno plays */ | 1392 | if (skb == tp->lost_skb_hint) |
1393 | if (!tcp_is_fack(tp) && tcp_is_sack(tp) && tp->lost_skb_hint && | ||
1394 | !before(TCP_SKB_CB(tp->lost_skb_hint)->seq, TCP_SKB_CB(skb)->seq)) | ||
1395 | tp->lost_cnt_hint += pcount; | 1393 | tp->lost_cnt_hint += pcount; |
1396 | 1394 | ||
1397 | TCP_SKB_CB(prev)->end_seq += shifted; | 1395 | TCP_SKB_CB(prev)->end_seq += shifted; |