git: 08c7f1b6d488 - main - Fix typo (interrups -> interrupts) in a sysctl description in tcp_lro.c.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 04 Apr 2022 20:52:21 UTC
The branch main has been updated by np: URL: https://cgit.FreeBSD.org/src/commit/?id=08c7f1b6d4880104a18bab2a642025c2e2fa9fad commit 08c7f1b6d4880104a18bab2a642025c2e2fa9fad Author: Navdeep Parhar <np@FreeBSD.org> AuthorDate: 2022-04-04 20:48:32 +0000 Commit: Navdeep Parhar <np@FreeBSD.org> CommitDate: 2022-04-04 20:48:32 +0000 Fix typo (interrups -> interrupts) in a sysctl description in tcp_lro.c. MFC after: 3 days --- 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 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");