patch 'net/iavf: fix IPv4 flow subscription' has been queued to stable release 23.11.7
Shani Peretz
shperetz at nvidia.com
Tue Mar 31 08:24:57 CEST 2026
Hi,
FYI, your patch has been queued to stable release 23.11.7
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 04/05/26. 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/shanipr/dpdk-stable
This queued commit can be viewed at:
https://github.com/shanipr/dpdk-stable/commit/4c80a50d907217aa5a5fed0daa073340cba26ab5
Thanks.
Shani
---
>From 4c80a50d907217aa5a5fed0daa073340cba26ab5 Mon Sep 17 00:00:00 2001
From: Anatoly Burakov <anatoly.burakov at intel.com>
Date: Fri, 13 Feb 2026 09:10:12 +0000
Subject: [PATCH] net/iavf: fix IPv4 flow subscription
[ upstream commit 9b1780d392b21e6c8e5d89a4c01503105e4372bd ]
Currently, when IPv4 is parsed as part of flow subscription input set,
we add two bytes to the total number of bytes in the input set for IPv4
source or destination addresses, whereas they should be 4 bytes. Fix to
add the correct number of bytes.
Fixes: 6d42380e5983 ("net/iavf: add flow subscrption supported pattern")
Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>
Acked-by: Vladimir Medvedkin <vladimir.medvedkin at intel.com>
---
drivers/net/iavf/iavf_fsub.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/iavf/iavf_fsub.c b/drivers/net/iavf/iavf_fsub.c
index 74e1e7099b..1b43a5c2eb 100644
--- a/drivers/net/iavf/iavf_fsub.c
+++ b/drivers/net/iavf/iavf_fsub.c
@@ -306,11 +306,11 @@ iavf_fsub_parse_pattern(const struct rte_flow_item pattern[],
if (ipv4_mask->hdr.src_addr) {
*input |= IAVF_INSET_IPV4_SRC;
- input_set_byte += 2;
+ input_set_byte += 4;
}
if (ipv4_mask->hdr.dst_addr) {
*input |= IAVF_INSET_IPV4_DST;
- input_set_byte += 2;
+ input_set_byte += 4;
}
if (ipv4_mask->hdr.time_to_live) {
*input |= IAVF_INSET_IPV4_TTL;
--
2.43.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-03-31 00:32:37.360687637 +0300
+++ 0098-net-iavf-fix-IPv4-flow-subscription.patch 2026-03-31 00:32:29.774214000 +0300
@@ -1 +1 @@
-From 9b1780d392b21e6c8e5d89a4c01503105e4372bd Mon Sep 17 00:00:00 2001
+From 4c80a50d907217aa5a5fed0daa073340cba26ab5 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 9b1780d392b21e6c8e5d89a4c01503105e4372bd ]
+
@@ -12 +13,0 @@
-Cc: stable at dpdk.org
@@ -17 +18 @@
- drivers/net/intel/iavf/iavf_fsub.c | 4 ++--
+ drivers/net/iavf/iavf_fsub.c | 4 ++--
@@ -20,5 +21,5 @@
-diff --git a/drivers/net/intel/iavf/iavf_fsub.c b/drivers/net/intel/iavf/iavf_fsub.c
-index 18df9c6500..cf1030320f 100644
---- a/drivers/net/intel/iavf/iavf_fsub.c
-+++ b/drivers/net/intel/iavf/iavf_fsub.c
-@@ -314,11 +314,11 @@ iavf_fsub_parse_pattern(const struct rte_flow_item pattern[],
+diff --git a/drivers/net/iavf/iavf_fsub.c b/drivers/net/iavf/iavf_fsub.c
+index 74e1e7099b..1b43a5c2eb 100644
+--- a/drivers/net/iavf/iavf_fsub.c
++++ b/drivers/net/iavf/iavf_fsub.c
+@@ -306,11 +306,11 @@ iavf_fsub_parse_pattern(const struct rte_flow_item pattern[],
More information about the stable
mailing list