The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=5090ea716b22521debefb4b26987c7e5b224ef04
commit 5090ea716b22521debefb4b26987c7e5b224ef04 Author: Warner Losh <i...@freebsd.org> AuthorDate: 2025-08-08 17:17:38 +0000 Commit: Warner Losh <i...@freebsd.org> CommitDate: 2025-08-08 17:17:38 +0000 inet: fix typo Note: btw submitted a number of other things in this area that haven't made it into the tree, so I'm making an exception to the no typo rule since it was done in that context. Submitted by: btw (Tiwei Bie GSOC 2015 so unsure what to use for author) Differential Revision: https://reviews.freebsd.org/D3510 --- sys/netinet/in_rss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/in_rss.c b/sys/netinet/in_rss.c index 698fd86dc7a5..f93a1d2bfd7b 100644 --- a/sys/netinet/in_rss.c +++ b/sys/netinet/in_rss.c @@ -285,7 +285,7 @@ rss_mbuf_software_hash_v4(const struct mbuf *m, int dir, uint32_t *hashval, } /* * Only allow 2-tuple for TCP frames if we don't also - * support 2-tuple for TCP. + * support 4-tuple for TCP. */ if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV4) && ((rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV4) == 0) &&