The branch stable/13 has been updated by rscheff: URL: https://cgit.FreeBSD.org/src/commit/?id=e6341fd7220e8f5a3c03a7bf1ad91906e709b5ca
commit e6341fd7220e8f5a3c03a7bf1ad91906e709b5ca Author: Richard Scheffenegger <[email protected]> AuthorDate: 2021-01-26 13:47:19 +0000 Commit: Richard Scheffenegger <[email protected]> CommitDate: 2021-01-29 10:53:19 +0000 Adjust line length in tcp_prr_partialack No functional changes. Reviewed By: tuexen, mm, #transport MFC: 3 days Subscribers: imp, melifaro Differential Revision: https://reviews.freebsd.org/D28329 (cherry picked from commit 84761f3df508aed50783b60f028af9d98a684b41) --- sys/netinet/tcp_input.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 75718352da00..4b8f91ed9d0b 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -3949,14 +3949,17 @@ tcp_prr_partialack(struct tcpcb *tp, struct tcphdr *th) * Proportional Rate Reduction */ if (pipe > tp->snd_ssthresh) - snd_cnt = (tp->sackhint.prr_delivered * tp->snd_ssthresh / tp->sackhint.recover_fs) - - tp->sackhint.sack_bytes_rexmit; + snd_cnt = (tp->sackhint.prr_delivered * tp->snd_ssthresh / + tp->sackhint.recover_fs) - tp->sackhint.sack_bytes_rexmit; else { if (V_tcp_do_prr_conservative) - limit = tp->sackhint.prr_delivered - tp->sackhint.sack_bytes_rexmit; + limit = tp->sackhint.prr_delivered - + tp->sackhint.sack_bytes_rexmit; else - if ((tp->sackhint.prr_delivered - tp->sackhint.sack_bytes_rexmit) > del_data) - limit = tp->sackhint.prr_delivered - tp->sackhint.sack_bytes_rexmit + maxseg; + if ((tp->sackhint.prr_delivered - + tp->sackhint.sack_bytes_rexmit) > del_data) + limit = tp->sackhint.prr_delivered - + tp->sackhint.sack_bytes_rexmit + maxseg; else limit = del_data + maxseg; snd_cnt = min((tp->snd_ssthresh - pipe), limit); _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
