TCP BBR: fix condition when sending a tail loss probe
Reviewed by: rrs CID: 1523793 MFC after: 1 week Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D48274
This commit is contained in:
@@ -4614,7 +4614,7 @@ bbr_timeout_tlp(struct tcpcb *tp, struct tcp_bbr *bbr, uint32_t cts)
|
||||
*/
|
||||
if (collapsed_win == 0) {
|
||||
rsm = TAILQ_LAST_FAST(&bbr->r_ctl.rc_map, bbr_sendmap, r_next);
|
||||
if (rsm && (BBR_ACKED | BBR_HAS_FIN)) {
|
||||
if (rsm && (rsm->r_flags & (BBR_ACKED | BBR_HAS_FIN))) {
|
||||
rsm = bbr_find_high_nonack(bbr, rsm);
|
||||
}
|
||||
if (rsm == NULL) {
|
||||
|
||||
Reference in New Issue
Block a user