[PATCH] net/ixgbe: fix SCTP port support on E610

Yuan Wang yuanx.wang at intel.com
Fri Jul 18 10:53:35 CEST 2025


E610 supports SCTP port in FDIR filter, so add it to the support list.

Fixes: 86e19565f5e2 (net/ixgbe: fix SCTP port support)
Cc: stable at dpdk.org

Signed-off-by: Yuan Wang <yuanx.wang at intel.com>
---
 drivers/net/intel/ixgbe/ixgbe_flow.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/intel/ixgbe/ixgbe_flow.c b/drivers/net/intel/ixgbe/ixgbe_flow.c
index 6278646720..1bf0af330f 100644
--- a/drivers/net/intel/ixgbe/ixgbe_flow.c
+++ b/drivers/net/intel/ixgbe/ixgbe_flow.c
@@ -2114,7 +2114,8 @@ ixgbe_parse_fdir_filter_normal(struct rte_eth_dev *dev,
 		/* only x550 family only support sctp port */
 		if (hw->mac.type == ixgbe_mac_X550 ||
 		    hw->mac.type == ixgbe_mac_X550EM_x ||
-		    hw->mac.type == ixgbe_mac_X550EM_a) {
+		    hw->mac.type == ixgbe_mac_X550EM_a ||
+		    hw->mac.type == ixgbe_mac_E610) {
 			/**
 			 * Only care about src & dst ports,
 			 * others should be masked.
-- 
2.47.1



More information about the dev mailing list