Date: Fri, 10 Jun 2022 12:34:13 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 3902536a8da0 - stable/13 - tcp_rack: Fix two typos in sysctl descriptions Message-ID: <202206101234.25ACYDjl023821@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=3902536a8da0e5e5e56be517b91a2bb15c2270d7 commit 3902536a8da0e5e5e56be517b91a2bb15c2270d7 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-06-04 09:24:18 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-06-10 12:30:04 +0000 tcp_rack: Fix two typos in sysctl descriptions - s/higest/highest/ (cherry picked from commit 21b923c33082b0123a7c638e8984fd313c3a6f1f) --- sys/netinet/tcp_stacks/rack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netinet/tcp_stacks/rack.c b/sys/netinet/tcp_stacks/rack.c index 2333837b040b..fe9743b82567 100644 --- a/sys/netinet/tcp_stacks/rack.c +++ b/sys/netinet/tcp_stacks/rack.c @@ -1142,12 +1142,12 @@ rack_init_sysctls(void) SYSCTL_CHILDREN(rack_timely), OID_AUTO, "upperboundss", CTLFLAG_RW, &rack_per_upper_bound_ss, 0, - "Rack timely higest percentage we allow GP multiplier in SS to raise to (0 is no upperbound)"); + "Rack timely highest percentage we allow GP multiplier in SS to raise to (0 is no upperbound)"); SYSCTL_ADD_S32(&rack_sysctl_ctx, SYSCTL_CHILDREN(rack_timely), OID_AUTO, "upperboundca", CTLFLAG_RW, &rack_per_upper_bound_ca, 0, - "Rack timely higest percentage we allow GP multiplier to CA raise to (0 is no upperbound)"); + "Rack timely highest percentage we allow GP multiplier to CA raise to (0 is no upperbound)"); SYSCTL_ADD_S32(&rack_sysctl_ctx, SYSCTL_CHILDREN(rack_timely), OID_AUTO, "dynamicgp", CTLFLAG_RW,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202206101234.25ACYDjl023821>