git: 21dd554d1697 - main - igb: remove M_HASHTYPE when RSS is not enabled
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 06 Feb 2026 20:33:03 UTC
The branch main has been updated by cc:
URL: https://cgit.FreeBSD.org/src/commit/?id=21dd554d16971a9cce36bb48ebbf5219297995b4
commit 21dd554d16971a9cce36bb48ebbf5219297995b4
Author: Cheng Cui <cc@FreeBSD.org>
AuthorDate: 2026-02-06 14:43:41 +0000
Commit: Cheng Cui <cc@FreeBSD.org>
CommitDate: 2026-02-06 20:31:11 +0000
igb: remove M_HASHTYPE when RSS is not enabled
manually cherry-pick efcc0423d80e
Reviewed by: kbowling
Differential Revision: https://reviews.freebsd.org/D55143
---
sys/dev/e1000/igb_txrx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/e1000/igb_txrx.c b/sys/dev/e1000/igb_txrx.c
index 46fe5c741055..e01bc72cdc55 100644
--- a/sys/dev/e1000/igb_txrx.c
+++ b/sys/dev/e1000/igb_txrx.c
@@ -573,6 +573,6 @@ igb_determine_rsstype(uint16_t pkt_info)
case E1000_RXDADV_RSSTYPE_IPV6_TCP_EX:
return M_HASHTYPE_RSS_TCP_IPV6_EX;
default:
- return M_HASHTYPE_OPAQUE;
+ return M_HASHTYPE_NONE;
}
}