]> git.baikalelectronics.ru Git - kernel.git/commit
tcp: Fix highest_sack and highest_sack_seq
authorCambda Zhu <cambda@linux.alibaba.com>
Fri, 27 Dec 2019 08:52:37 +0000 (16:52 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 31 Dec 2019 04:28:39 +0000 (20:28 -0800)
commit9a26b334a4dc564e23b9ffa07345320e9a27edfa
tree610090d3b5c8874699e9b52a4fefb8d709324359
parentcfe094450df22ec95f3c46f0037131ba62567c0b
tcp: Fix highest_sack and highest_sack_seq

>From commit a3a169a06063 ("tcp: highest_sack fix"), the logic about
setting tp->highest_sack to the head of the send queue was removed.
Of course the logic is error prone, but it is logical. Before we
remove the pointer to the highest sack skb and use the seq instead,
we need to set tp->highest_sack to NULL when there is no skb after
the last sack, and then replace NULL with the real skb when new skb
inserted into the rtx queue, because the NULL means the highest sack
seq is tp->snd_nxt. If tp->highest_sack is NULL and new data sent,
the next ACK with sack option will increase tp->reordering unexpectedly.

This patch sets tp->highest_sack to the tail of the rtx queue if
it's NULL and new data is sent. The patch keeps the rule that the
highest_sack can only be maintained by sack processing, except for
this only case.

Fixes: a3a169a06063 ("tcp: highest_sack fix")
Signed-off-by: Cambda Zhu <cambda@linux.alibaba.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_output.c