[dpdk-stable] patch 'devtools: fix symbol check when adding experimental section' has been queued to stable release 18.11.1

Kevin Traynor ktraynor at redhat.com
Fri Dec 14 19:24:03 CET 2018


Hi,

FYI, your patch has been queued to stable release 18.11.1

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 12/18/18. 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.

Thanks.

Kevin Traynor

---
>From 3b0f329479187f01187215eec0d4d6ff6f7f0f1b Mon Sep 17 00:00:00 2001
From: David Marchand <david.marchand at redhat.com>
Date: Fri, 30 Nov 2018 13:32:02 +0100
Subject: [PATCH] devtools: fix symbol check when adding experimental section

[ upstream commit b0aa225b45e102a1eba2215e3a75b5683d8435f2 ]

The incriminated commit did relax the condition to catch all sections
but dropped the + removal which can trigger false detection of the
special EXPERIMENTAL section when adding symbols and the section in the
same patch.

Fixes: 7281cf520f89 ("devtools: relax rule for identifying symbol section")

Signed-off-by: David Marchand <david.marchand at redhat.com>
Acked-by: Neil Horman <nhorman at tuxdriver.com>
---
 devtools/check-symbol-change.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/devtools/check-symbol-change.sh b/devtools/check-symbol-change.sh
index 1d21e9165..8f986a5d7 100755
--- a/devtools/check-symbol-change.sh
+++ b/devtools/check-symbol-change.sh
@@ -32,4 +32,5 @@ build_map_changes()
 		# symbol rule below
 		/^.*{/ {
+			gsub("+", "");
 			if (in_map == 1) {
 				sec=$(NF-1); in_sec=1;
-- 
2.19.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2018-12-14 18:23:18.239787836 +0000
+++ 0001-devtools-fix-symbol-check-when-adding-experimental-s.patch	2018-12-14 18:23:18.000000000 +0000
@@ -1,15 +1,16 @@
-From b0aa225b45e102a1eba2215e3a75b5683d8435f2 Mon Sep 17 00:00:00 2001
+From 3b0f329479187f01187215eec0d4d6ff6f7f0f1b Mon Sep 17 00:00:00 2001
 From: David Marchand <david.marchand at redhat.com>
 Date: Fri, 30 Nov 2018 13:32:02 +0100
 Subject: [PATCH] devtools: fix symbol check when adding experimental section
 
+[ upstream commit b0aa225b45e102a1eba2215e3a75b5683d8435f2 ]
+
 The incriminated commit did relax the condition to catch all sections
 but dropped the + removal which can trigger false detection of the
 special EXPERIMENTAL section when adding symbols and the section in the
 same patch.
 
 Fixes: 7281cf520f89 ("devtools: relax rule for identifying symbol section")
-Cc: stable at dpdk.org
 
 Signed-off-by: David Marchand <david.marchand at redhat.com>
 Acked-by: Neil Horman <nhorman at tuxdriver.com>
@@ -18,7 +19,7 @@
  1 file changed, 1 insertion(+)
 
 diff --git a/devtools/check-symbol-change.sh b/devtools/check-symbol-change.sh
-index 4b8d9f3c7..020da7ed0 100755
+index 1d21e9165..8f986a5d7 100755
 --- a/devtools/check-symbol-change.sh
 +++ b/devtools/check-symbol-change.sh
 @@ -32,4 +32,5 @@ build_map_changes()


More information about the stable mailing list