Fix typo (interrups -> interrupts) in a sysctl description in tcp_lro.c.

MFC after:	3 days
This commit is contained in:
Navdeep Parhar 2022-04-04 13:48:32 -07:00
parent 4823489ab6
commit 08c7f1b6d4

View File

@ -111,7 +111,7 @@ SYSCTL_UINT(_net_inet_tcp_lro, OID_AUTO, entries,
static uint32_t tcp_lro_cpu_set_thresh = TCP_LRO_CPU_DECLARATION_THRESH;
SYSCTL_UINT(_net_inet_tcp_lro, OID_AUTO, lro_cpu_threshold,
CTLFLAG_RDTUN | CTLFLAG_MPSAFE, &tcp_lro_cpu_set_thresh, 0,
"Number of interrups in a row on the same CPU that will make us declare an 'affinity' cpu?");
"Number of interrupts in a row on the same CPU that will make us declare an 'affinity' cpu?");
SYSCTL_COUNTER_U64(_net_inet_tcp_lro, OID_AUTO, fullqueue, CTLFLAG_RD,
&tcp_inp_lro_direct_queue, "Number of lro's fully queued to transport");