git: 73fc39b1bf99 - stable/13 - Fix typo (interrups -> interrupts) in a sysctl description in tcp_lro.c.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 07 Apr 2022 01:50:23 UTC
The branch stable/13 has been updated by np:
URL: https://cgit.FreeBSD.org/src/commit/?id=73fc39b1bf99ce11aa544c430fa41c4d3a6fb292
commit 73fc39b1bf99ce11aa544c430fa41c4d3a6fb292
Author: Navdeep Parhar <np@FreeBSD.org>
AuthorDate: 2022-04-04 20:48:32 +0000
Commit: Navdeep Parhar <np@FreeBSD.org>
CommitDate: 2022-04-07 01:49:50 +0000
Fix typo (interrups -> interrupts) in a sysctl description in tcp_lro.c.
(cherry picked from commit 08c7f1b6d4880104a18bab2a642025c2e2fa9fad)
---
sys/netinet/tcp_lro.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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");