Date: Sat, 14 May 2022 21:27:16 GMT From: Kristof Provost <kp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: f4e4c5c4c22f - stable/13 - in_rss: fix set but not used warning Message-ID: <202205142127.24ELRGS9098998@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=f4e4c5c4c22f9c902125fc8a1dcc38560b2687b0 commit f4e4c5c4c22f9c902125fc8a1dcc38560b2687b0 Author: Kristof Provost <kp@FreeBSD.org> AuthorDate: 2022-05-07 14:01:13 +0000 Commit: Kristof Provost <kp@FreeBSD.org> CommitDate: 2022-05-14 09:10:19 +0000 in_rss: fix set but not used warning If 'options RSS' is set. MFC after: 1 week Sponsored by: Orange Business Services (cherry picked from commit 017e7d0390870061372f8f708dcbff612983f97a) --- sys/netinet/in_rss.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/netinet/in_rss.c b/sys/netinet/in_rss.c index 05659b97fe7c..e73d2d236f92 100644 --- a/sys/netinet/in_rss.c +++ b/sys/netinet/in_rss.c @@ -215,7 +215,6 @@ rss_mbuf_software_hash_v4(const struct mbuf *m, int dir, uint32_t *hashval, const struct ip *ip; const struct tcphdr *th; const struct udphdr *uh; - uint32_t flowid; uint32_t flowtype; uint8_t proto; int iphlen; @@ -266,7 +265,6 @@ rss_mbuf_software_hash_v4(const struct mbuf *m, int dir, uint32_t *hashval, * then we shouldn't just "trust" the 2-tuple hash. We need * a 4-tuple hash. */ - flowid = m->m_pkthdr.flowid; flowtype = M_HASHTYPE_GET(m); if (flowtype != M_HASHTYPE_NONE) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202205142127.24ELRGS9098998>