mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 10:13:57 +08:00
[TCP] FRTO: Incorrectly clears TCPCB_EVER_RETRANS bit
FRTO was slightly too brave... Should only clear TCPCB_SACKED_RETRANS bit. Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
de46c33745
commit
522e7548a9
@ -1266,7 +1266,7 @@ void tcp_enter_frto(struct sock *sk)
|
||||
tp->undo_retrans = 0;
|
||||
|
||||
sk_stream_for_retrans_queue(skb, sk) {
|
||||
TCP_SKB_CB(skb)->sacked &= ~TCPCB_RETRANS;
|
||||
TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
|
||||
}
|
||||
tcp_sync_left_out(tp);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user