Fix a common typo in syctl descriptions

- s/maxiumum/maximum/

MFC after:	3 days
This commit is contained in:
Gordon Bergling 2021-11-03 20:49:24 +01:00
parent 4412225859
commit c28e39c3d6
3 changed files with 3 additions and 3 deletions

View File

@ -1666,7 +1666,7 @@ bbr_init_sysctls(void)
SYSCTL_CHILDREN(bbr_timeout),
OID_AUTO, "maxrto", CTLFLAG_RW,
&bbr_rto_max_sec, 4,
"Maxiumum RTO in seconds -- should be at least as large as min_rto");
"Maximum RTO in seconds -- should be at least as large as min_rto");
SYSCTL_ADD_S32(&bbr_sysctl_ctx,
SYSCTL_CHILDREN(bbr_timeout),
OID_AUTO, "tlp_retry", CTLFLAG_RW,

View File

@ -1316,7 +1316,7 @@ rack_init_sysctls(void)
SYSCTL_CHILDREN(rack_timers),
OID_AUTO, "maxrto", CTLFLAG_RW,
&rack_rto_max, 4000000,
"Maxiumum RTO in microseconds -- should be at least as large as min_rto");
"Maximum RTO in microseconds -- should be at least as large as min_rto");
SYSCTL_ADD_S32(&rack_sysctl_ctx,
SYSCTL_CHILDREN(rack_timers),
OID_AUTO, "minto", CTLFLAG_RW,

View File

@ -494,7 +494,7 @@ static int max_kstack_used;
SYSCTL_INT(_debug, OID_AUTO, max_kstack_used, CTLFLAG_RD,
&max_kstack_used, 0,
"Maxiumum stack depth used by a thread in kernel");
"Maximum stack depth used by a thread in kernel");
void
intr_prof_stack_use(struct thread *td, struct trapframe *frame)