git: 4d6883cbe2fa - main - tcp_bbr(4): Fix a typo in a sysctl description and a comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 08 Apr 2022 19:08:25 UTC
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=4d6883cbe2fa6182698662880ba75475fda1ac36 commit 4d6883cbe2fa6182698662880ba75475fda1ac36 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-04-08 18:46:52 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-04-08 19:08:18 +0000 tcp_bbr(4): Fix a typo in a sysctl description and a comment - s/postive/positive/ MFC after: 5 days --- sys/netinet/tcp_stacks/bbr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netinet/tcp_stacks/bbr.c b/sys/netinet/tcp_stacks/bbr.c index 31150e3169ec..a9459d4b4517 100644 --- a/sys/netinet/tcp_stacks/bbr.c +++ b/sys/netinet/tcp_stacks/bbr.c @@ -1727,7 +1727,7 @@ bbr_init_sysctls(void) SYSCTL_CHILDREN(bbr_policer), OID_AUTO, "false_postive", CTLFLAG_RW, &bbr_lt_intvl_fp, 0, - "What packet epoch do we do false-postive detection at (0=no)?"); + "What packet epoch do we do false-positive detection at (0=no)?"); SYSCTL_ADD_S32(&bbr_sysctl_ctx, SYSCTL_CHILDREN(bbr_policer), OID_AUTO, "loss_thresh", CTLFLAG_RW, @@ -3894,7 +3894,7 @@ bbr_post_recovery(struct tcpcb *tp) } } else { /* - * A strict drop limit of N is is inplace + * A strict drop limit of N is inplace */ if (newcwnd < (bbr_drop_limit * maxseg)) { newcwnd = bbr_drop_limit * maxseg;