git: 9778537b6738 - main - igc: remove M_HASHTYPE when RSS is not enabled

From: Cheng Cui <cc_at_FreeBSD.org>
Date: Thu, 12 Feb 2026 14:34:07 UTC
The branch main has been updated by cc:

URL: https://cgit.FreeBSD.org/src/commit/?id=9778537b6738d8693e887c3b0c8bc4d5a0aa28ce

commit 9778537b6738d8693e887c3b0c8bc4d5a0aa28ce
Author:     Cheng Cui <cc@FreeBSD.org>
AuthorDate: 2026-02-11 22:21:32 +0000
Commit:     Cheng Cui <cc@FreeBSD.org>
CommitDate: 2026-02-12 14:33:29 +0000

    igc: remove M_HASHTYPE when RSS is not enabled
    
    Summary: manually cherry-pick 21dd554d1697
    
    Reviewed by: kbowling
    Differential Revision: https://reviews.freebsd.org/D55256
---
 sys/dev/igc/igc_txrx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/igc/igc_txrx.c b/sys/dev/igc/igc_txrx.c
index 96949492fd24..7ab09078d8f4 100644
--- a/sys/dev/igc/igc_txrx.c
+++ b/sys/dev/igc/igc_txrx.c
@@ -593,6 +593,6 @@ igc_determine_rsstype(uint16_t pkt_info)
 	case IGC_RXDADV_RSSTYPE_IPV6_TCP_EX:
 		return M_HASHTYPE_RSS_TCP_IPV6_EX;
 	default:
-		return M_HASHTYPE_OPAQUE;
+		return M_HASHTYPE_NONE;
 	}
 }