aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavdeep Parhar <np@FreeBSD.org>2022-04-04 20:48:32 +0000
committerNavdeep Parhar <np@FreeBSD.org>2022-04-07 01:49:50 +0000
commit73fc39b1bf99ce11aa544c430fa41c4d3a6fb292 (patch)
tree58286d25bcd773880f9dc6685a7327c64a3576a8
parent110b8112e5ebf2ba0f00479da1b7eafa83684d2e (diff)
downloadsrc-73fc39b1bf99ce11aa544c430fa41c4d3a6fb292.tar.gz
src-73fc39b1bf99ce11aa544c430fa41c4d3a6fb292.zip
Fix typo (interrups -> interrupts) in a sysctl description in tcp_lro.c.
(cherry picked from commit 08c7f1b6d4880104a18bab2a642025c2e2fa9fad)
-rw-r--r--sys/netinet/tcp_lro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/tcp_lro.c b/sys/netinet/tcp_lro.c
index d53391454062..ec7065ae306f 100644
--- a/sys/netinet/tcp_lro.c
+++ b/sys/netinet/tcp_lro.c
@@ -110,7 +110,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");