Date: Sat, 4 Jun 2022 09:24:30 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 21b923c33082 - main - tcp_rack: Fix two typos in sysctl descriptions Message-ID: <202206040924.2549OUEe079428@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=21b923c33082b0123a7c638e8984fd313c3a6f1f commit 21b923c33082b0123a7c638e8984fd313c3a6f1f Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-06-04 09:24:18 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-06-04 09:24:18 +0000 tcp_rack: Fix two typos in sysctl descriptions - s/higest/highest/ MFC after: 3 days --- 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 0f02c5615286..40bd0007b390 100644 --- a/sys/netinet/tcp_stacks/rack.c +++ b/sys/netinet/tcp_stacks/rack.c @@ -1137,12 +1137,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?202206040924.2549OUEe079428>