patch 'net/ixgbe: fix SCTP port filtering on E610' has been queued to stable release 24.11.4
Kevin Traynor
ktraynor at redhat.com
Fri Oct 31 15:32:47 CET 2025
Hi,
FYI, your patch has been queued to stable release 24.11.4
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 11/05/25. So please
shout if anyone has objections.
Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.
Queued patches are on a temporary branch at:
https://github.com/kevintraynor/dpdk-stable
This queued commit can be viewed at:
https://github.com/kevintraynor/dpdk-stable/commit/910013aa60c2a0799d981c83d23ae1e13a70fbde
Thanks.
Kevin
---
>From 910013aa60c2a0799d981c83d23ae1e13a70fbde Mon Sep 17 00:00:00 2001
From: Yuan Wang <yuanx.wang at intel.com>
Date: Fri, 18 Jul 2025 16:53:35 +0800
Subject: [PATCH] net/ixgbe: fix SCTP port filtering on E610
[ upstream commit 98c359e33004afa3027e83c60c8d1bb6e240fe6b ]
E610 supports SCTP port in FDIR filter, so add it to the support list.
Fixes: 316637762a5f ("net/ixgbe/base: enable E610 device")
Signed-off-by: Yuan Wang <yuanx.wang at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
drivers/net/ixgbe/ixgbe_flow.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ixgbe/ixgbe_flow.c b/drivers/net/ixgbe/ixgbe_flow.c
index 1e3804bb15..5cc51621b8 100644
--- a/drivers/net/ixgbe/ixgbe_flow.c
+++ b/drivers/net/ixgbe/ixgbe_flow.c
@@ -2112,8 +2112,9 @@ ixgbe_parse_fdir_filter_normal(struct rte_eth_dev *dev,
}
- /* only x550 family only support sctp port */
+ /* only some mac types 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,
--
2.51.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2025-10-31 13:53:53.680091749 +0000
+++ 0045-net-ixgbe-fix-SCTP-port-filtering-on-E610.patch 2025-10-31 13:53:52.144523705 +0000
@@ -1 +1 @@
-From 98c359e33004afa3027e83c60c8d1bb6e240fe6b Mon Sep 17 00:00:00 2001
+From 910013aa60c2a0799d981c83d23ae1e13a70fbde Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 98c359e33004afa3027e83c60c8d1bb6e240fe6b ]
+
@@ -9 +10,0 @@
-Cc: stable at dpdk.org
@@ -14 +15 @@
- drivers/net/intel/ixgbe/ixgbe_flow.c | 5 +++--
+ drivers/net/ixgbe/ixgbe_flow.c | 5 +++--
@@ -17,4 +18,4 @@
-diff --git a/drivers/net/intel/ixgbe/ixgbe_flow.c b/drivers/net/intel/ixgbe/ixgbe_flow.c
-index 6278646720..3b68d820ca 100644
---- a/drivers/net/intel/ixgbe/ixgbe_flow.c
-+++ b/drivers/net/intel/ixgbe/ixgbe_flow.c
+diff --git a/drivers/net/ixgbe/ixgbe_flow.c b/drivers/net/ixgbe/ixgbe_flow.c
+index 1e3804bb15..5cc51621b8 100644
+--- a/drivers/net/ixgbe/ixgbe_flow.c
++++ b/drivers/net/ixgbe/ixgbe_flow.c
More information about the stable
mailing list