patch 'net/iavf: fix IPv4 flow subscription' has been queued to stable release 24.11.5
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Fri Feb 20 15:56:46 CET 2026
Hi,
FYI, your patch has been queued to stable release 24.11.5
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 02/22/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/bluca/dpdk-stable
This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/d394b7f66d53cf3c6e74f05d1a92d0c0b277f9ce
Thanks.
Luca Boccassi
---
>From d394b7f66d53cf3c6e74f05d1a92d0c0b277f9ce 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 eb5a3feab1..3a08139801 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.47.3
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-02-20 14:55:47.189902484 +0000
+++ 0104-net-iavf-fix-IPv4-flow-subscription.patch 2026-02-20 14:55:43.356193651 +0000
@@ -1 +1 @@
-From 9b1780d392b21e6c8e5d89a4c01503105e4372bd Mon Sep 17 00:00:00 2001
+From d394b7f66d53cf3c6e74f05d1a92d0c0b277f9ce 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 eb5a3feab1..3a08139801 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