patch 'examples/flow_filtering: fix make clean' has been queued to stable release 24.11.3
Kevin Traynor
ktraynor at redhat.com
Fri Jul 18 21:31:50 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/3c343b83e732da91b86b1e618a40337c14467fca
Thanks.
Kevin
---
>From 3c343b83e732da91b86b1e618a40337c14467fca Mon Sep 17 00:00:00 2001
From: Tanzeel Ahmed <tanzeelahmed713 at gmail.com>
Date: Sat, 29 Mar 2025 12:53:33 -0700
Subject: [PATCH] examples/flow_filtering: fix make clean
[ upstream commit ab79c1ba245646055cac3a3c6ec3544b217c6751 ]
make clean is unable to delete build directory
because *.o files are not removed.
Fixes: 16158f349000 ("examples/flow_filtering: introduce use cases snippets")
Signed-off-by: Tanzeel Ahmed <tanzeelahmed713 at gmail.com>
---
.mailmap | 1 +
examples/flow_filtering/Makefile | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.mailmap b/.mailmap
index 0406784341..41072fda31 100644
--- a/.mailmap
+++ b/.mailmap
@@ -1521,4 +1521,5 @@ Takuya Asada <syuu at cloudius-systems.com>
Tal Avraham <talavr at annapurnalabs.com>
Tal Shnaiderman <talshn at nvidia.com> <talshn at mellanox.com>
+Tanzeel Ahmed <tanzeelahmed713 at gmail.com>
Tao Y Yang <tao.y.yang at intel.com>
Tao Zhu <taox.zhu at intel.com>
diff --git a/examples/flow_filtering/Makefile b/examples/flow_filtering/Makefile
index 9998ed10b5..653e3319a2 100644
--- a/examples/flow_filtering/Makefile
+++ b/examples/flow_filtering/Makefile
@@ -51,4 +51,4 @@ build:
.PHONY: clean
clean:
- rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared
+ rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared build/*.o
test -d build && rmdir -p build || true
--
2.50.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2025-07-18 20:29:17.147802081 +0100
+++ 0176-examples-flow_filtering-fix-make-clean.patch 2025-07-18 20:29:11.198908152 +0100
@@ -1 +1 @@
-From ab79c1ba245646055cac3a3c6ec3544b217c6751 Mon Sep 17 00:00:00 2001
+From 3c343b83e732da91b86b1e618a40337c14467fca Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit ab79c1ba245646055cac3a3c6ec3544b217c6751 ]
+
@@ -10 +11,0 @@
-Cc: stable at dpdk.org
@@ -19 +20 @@
-index 50ea382f73..eba7383c7d 100644
+index 0406784341..41072fda31 100644
@@ -22 +23,2 @@
-@@ -1540,4 +1540,5 @@ Tal Avraham <talavr at annapurnalabs.com>
+@@ -1521,4 +1521,5 @@ Takuya Asada <syuu at cloudius-systems.com>
+ Tal Avraham <talavr at annapurnalabs.com>
@@ -24 +25,0 @@
- Tamar Mashiah <tmashiah at nvidia.com>
@@ -29 +30 @@
-index 13bbafd9e8..f1e10b14dd 100644
+index 9998ed10b5..653e3319a2 100644
@@ -32 +33 @@
-@@ -43,4 +43,4 @@ build:
+@@ -51,4 +51,4 @@ build:
More information about the stable
mailing list