[dpdk-stable] patch 'raw/ifpga: use -Wno-error=format-security for meson' has been queued to stable release 18.08.1

Kevin Traynor ktraynor at redhat.com
Tue Nov 20 20:12:29 CET 2018


Hi,

FYI, your patch has been queued to stable release 18.08.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 11/23/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. If the code is different (ie: not only metadata diffs), due for example to
a change in context or macro names, please double check it.

Thanks.

Kevin Traynor

---
>From 92fcd87e5ad3485a1bb96a84c52e15bb70924d60 Mon Sep 17 00:00:00 2001
From: Luca Boccassi <bluca at debian.org>
Date: Mon, 17 Sep 2018 10:01:25 +0100
Subject: [PATCH] raw/ifpga: use -Wno-error=format-security for meson

[ upstream commit fd5a5cf7a9a477be57c075140e49b7dce5102c68 ]

This PMD is built with -Wno-format, which means GCC errors out if
-Wformat-security is used.

Fixes: 56bb54ea1bdf ("raw/ifpga/base: add Intel FPGA OPAE share code")

Signed-off-by: Luca Boccassi <bluca at debian.org>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
 drivers/raw/ifpga_rawdev/base/meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/raw/ifpga_rawdev/base/meson.build b/drivers/raw/ifpga_rawdev/base/meson.build
index cb6553521..03f5112ca 100644
--- a/drivers/raw/ifpga_rawdev/base/meson.build
+++ b/drivers/raw/ifpga_rawdev/base/meson.build
@@ -19,6 +19,6 @@ sources = [
 
 error_cflags = ['-Wno-sign-compare', '-Wno-unused-value',
-		'-Wno-format', '-Wno-unused-but-set-variable',
-		'-Wno-strict-aliasing'
+		'-Wno-format', '-Wno-error=format-security',
+		'-Wno-strict-aliasing', '-Wno-unused-but-set-variable'
 ]
 c_args = cflags
-- 
2.19.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2018-11-20 17:53:08.397666737 +0000
+++ 0039-raw-ifpga-use-Wno-error-format-security-for-meson.patch	2018-11-20 17:53:07.000000000 +0000
@@ -1,13 +1,14 @@
-From fd5a5cf7a9a477be57c075140e49b7dce5102c68 Mon Sep 17 00:00:00 2001
+From 92fcd87e5ad3485a1bb96a84c52e15bb70924d60 Mon Sep 17 00:00:00 2001
 From: Luca Boccassi <bluca at debian.org>
 Date: Mon, 17 Sep 2018 10:01:25 +0100
 Subject: [PATCH] raw/ifpga: use -Wno-error=format-security for meson
 
+[ upstream commit fd5a5cf7a9a477be57c075140e49b7dce5102c68 ]
+
 This PMD is built with -Wno-format, which means GCC errors out if
 -Wformat-security is used.
 
 Fixes: 56bb54ea1bdf ("raw/ifpga/base: add Intel FPGA OPAE share code")
-Cc: stable at dpdk.org
 
 Signed-off-by: Luca Boccassi <bluca at debian.org>
 Acked-by: Bruce Richardson <bruce.richardson at intel.com>


More information about the stable mailing list