[dpdk-stable] patch 'devtools: fix result of svg include check' has been queued to LTS release 18.11.2

Kevin Traynor ktraynor at redhat.com
Wed Apr 10 18:43:48 CEST 2019


Hi,

FYI, your patch has been queued to LTS release 18.11.2

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/16/19. 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 d52b406e77e462c832d7aa9400416b1a3a93251e Mon Sep 17 00:00:00 2001
From: Michael Santana <msantana at redhat.com>
Date: Mon, 4 Mar 2019 14:07:16 -0500
Subject: [PATCH] devtools: fix result of svg include check

[ upstream commit 1f6168503e882a37efbc8746e42c8af01a342405 ]

Fix trivial bug. In sh shell, 'foo = 1' is not the same as
'foo=1'. Using 'foo = 1' makes the shell attempt to interpret foo
as a command, rather than a simple variable assignment.

Fixes: dafc04c15174 ("devtools: fix return of forbidden addition checks")

Signed-off-by: Michael Santana <msantana at redhat.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
Reviewed-by: David Marchand <david.marchand at redhat.com>
---
 devtools/checkpatches.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh
index 3b03b7ef2..02d1c303e 100755
--- a/devtools/checkpatches.sh
+++ b/devtools/checkpatches.sh
@@ -63,5 +63,5 @@ check_forbidden_additions() { # <patch>
 		-v MESSAGE='Using explicit .svg extension instead of .*' \
 		-f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \
-		"$1" || res = 1
+		"$1" || res=1
 
 	return $res
-- 
2.20.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2019-04-10 14:06:10.977419953 +0100
+++ 0040-devtools-fix-result-of-svg-include-check.patch	2019-04-10 14:06:07.976291679 +0100
@@ -1,14 +1,15 @@
-From 1f6168503e882a37efbc8746e42c8af01a342405 Mon Sep 17 00:00:00 2001
+From d52b406e77e462c832d7aa9400416b1a3a93251e Mon Sep 17 00:00:00 2001
 From: Michael Santana <msantana at redhat.com>
 Date: Mon, 4 Mar 2019 14:07:16 -0500
 Subject: [PATCH] devtools: fix result of svg include check
 
+[ upstream commit 1f6168503e882a37efbc8746e42c8af01a342405 ]
+
 Fix trivial bug. In sh shell, 'foo = 1' is not the same as
 'foo=1'. Using 'foo = 1' makes the shell attempt to interpret foo
 as a command, rather than a simple variable assignment.
 
 Fixes: dafc04c15174 ("devtools: fix return of forbidden addition checks")
-Cc: stable at dpdk.org
 
 Signed-off-by: Michael Santana <msantana at redhat.com>
 Acked-by: Bruce Richardson <bruce.richardson at intel.com>
@@ -18,10 +19,10 @@
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh
-index 2cf2404ba..327277464 100755
+index 3b03b7ef2..02d1c303e 100755
 --- a/devtools/checkpatches.sh
 +++ b/devtools/checkpatches.sh
-@@ -74,5 +74,5 @@ check_forbidden_additions() { # <patch>
+@@ -63,5 +63,5 @@ check_forbidden_additions() { # <patch>
  		-v MESSAGE='Using explicit .svg extension instead of .*' \
  		-f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \
 -		"$1" || res = 1


More information about the stable mailing list