git: 017e7d039087 - main - in_rss: fix set but not used warning
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 07 May 2022 19:58:12 UTC
The branch main has been updated by kp:
URL: https://cgit.FreeBSD.org/src/commit/?id=017e7d0390870061372f8f708dcbff612983f97a
commit 017e7d0390870061372f8f708dcbff612983f97a
Author: Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2022-05-07 14:01:13 +0000
Commit: Kristof Provost <kp@FreeBSD.org>
CommitDate: 2022-05-07 16:17:33 +0000
in_rss: fix set but not used warning
If 'options RSS' is set.
MFC after: 1 week
Sponsored by: Orange Business Services
---
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 5dffbc5b5fd0..18cfaf986c4a 100644
--- a/sys/netinet/in_rss.c
+++ b/sys/netinet/in_rss.c
@@ -210,7 +210,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;
@@ -261,7 +260,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) {