patch 'net/txgbe: fix to create FDIR filter for SCTP packet' has been queued to stable release 24.11.3
Kevin Traynor
ktraynor at redhat.com
Fri Jul 18 21:31:14 CEST 2025
Hi,
FYI, your patch has been queued to stable release 24.11.3
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 07/23/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/4eb460ede5db8e26dc7050d61c008a68df402b4c
Thanks.
Kevin
---
>From 4eb460ede5db8e26dc7050d61c008a68df402b4c Mon Sep 17 00:00:00 2001
From: Jiawen Wu <jiawenwu at trustnetic.com>
Date: Fri, 13 Jun 2025 16:41:47 +0800
Subject: [PATCH] net/txgbe: fix to create FDIR filter for SCTP packet
[ upstream commit 0db38d54b57a963bab33dca65c1795eefdca2dd5 ]
The check for the mask of SCTP item is repeated and wrong, fix it to
make it work.
Fixes: b973ee26747a ("net/txgbe: parse flow director filter")
Signed-off-by: Jiawen Wu <jiawenwu at trustnetic.com>
---
drivers/net/txgbe/txgbe_flow.c | 13 -------------
1 file changed, 13 deletions(-)
diff --git a/drivers/net/txgbe/txgbe_flow.c b/drivers/net/txgbe/txgbe_flow.c
index abed0c1e00..d87739f54c 100644
--- a/drivers/net/txgbe/txgbe_flow.c
+++ b/drivers/net/txgbe/txgbe_flow.c
@@ -2068,17 +2068,4 @@ txgbe_parse_fdir_filter_normal(struct rte_eth_dev *dev __rte_unused,
sctp_spec->hdr.dst_port;
}
- /* others even sctp port is not supported */
- sctp_mask = item->mask;
- if (sctp_mask &&
- (sctp_mask->hdr.src_port ||
- sctp_mask->hdr.dst_port ||
- sctp_mask->hdr.tag ||
- sctp_mask->hdr.cksum)) {
- memset(rule, 0, sizeof(struct txgbe_fdir_rule));
- rte_flow_error_set(error, EINVAL,
- RTE_FLOW_ERROR_TYPE_ITEM,
- item, "Not supported by fdir filter");
- return -rte_errno;
- }
item = next_no_fuzzy_pattern(pattern, item);
--
2.50.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2025-07-18 20:29:15.946724823 +0100
+++ 0140-net-txgbe-fix-to-create-FDIR-filter-for-SCTP-packet.patch 2025-07-18 20:29:11.106907870 +0100
@@ -1 +1 @@
-From 0db38d54b57a963bab33dca65c1795eefdca2dd5 Mon Sep 17 00:00:00 2001
+From 4eb460ede5db8e26dc7050d61c008a68df402b4c Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 0db38d54b57a963bab33dca65c1795eefdca2dd5 ]
+
@@ -10 +11,0 @@
-Cc: stable at dpdk.org
@@ -18 +19 @@
-index bce88aebd3..c7cbf96a46 100644
+index abed0c1e00..d87739f54c 100644
More information about the stable
mailing list