]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'simplify-TCP-loss-marking-code'
authorDavid S. Miller <davem@davemloft.net>
Sat, 26 Sep 2020 00:17:14 +0000 (17:17 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 26 Sep 2020 00:17:14 +0000 (17:17 -0700)
commit2ad5467c5d787f7a88ffa1232380a1b7a571312a
treeda9770c68db22dab7766a0c22fbf22d05ae64b73
parentc8cf959b96373409ede47375afedf414baadac8c
parenta97eaffab1c4f9c533659ac3597d9054d92992c8
Merge branch 'simplify-TCP-loss-marking-code'

Yuchung Cheng says:

====================
simplify TCP loss marking code

The TCP loss marking is implemented by a set of intertwined
subroutines. TCP has several loss detection algorithms
(RACK, RFC6675/FACK, NewReno, etc) each calls a subset of
these routines to mark a packet lost. This has led to
various bugs (and fixes and fixes of fixes).

This patch set is to consolidate the loss marking code so
all detection algorithms call the same routine tcp_mark_skb_lost().
====================

Signed-off-by: David S. Miller <davem@davemloft.net>