diff options
author | Navdeep Parhar <np@FreeBSD.org> | 2022-04-04 20:48:32 +0000 |
---|---|---|
committer | Navdeep Parhar <np@FreeBSD.org> | 2022-04-04 20:48:32 +0000 |
commit | 08c7f1b6d4880104a18bab2a642025c2e2fa9fad (patch) | |
tree | 19fe1a77885f3192f955f3c625466fda1e6c2fa3 | |
parent | 4823489ab61dbaef4405cf03d2a48e77e593ce9c (diff) |
Fix typo (interrups -> interrupts) in a sysctl description in tcp_lro.c.
MFC after: 3 days
-rw-r--r-- | sys/netinet/tcp_lro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/tcp_lro.c b/sys/netinet/tcp_lro.c index 2a20a5ce4e6d..2633ccd12afc 100644 --- a/sys/netinet/tcp_lro.c +++ b/sys/netinet/tcp_lro.c @@ -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"); |