[dpdk-stable] patch 'pipeline: fix missing header includes' has been queued to stable release 20.11.1
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Fri Feb 5 12:17:55 CET 2021
Hi,
FYI, your patch has been queued to stable release 20.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 02/07/21. 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/1bc86cf411d7b6ce3edbae7307d94474c20d6160
Thanks.
Luca Boccassi
---
>From 1bc86cf411d7b6ce3edbae7307d94474c20d6160 Mon Sep 17 00:00:00 2001
From: Bruce Richardson <bruce.richardson at intel.com>
Date: Fri, 15 Jan 2021 11:10:44 +0000
Subject: [PATCH] pipeline: fix missing header includes
[ upstream commit cd93ec896191060310ec8761b3a10a5e02bc841c ]
The stdio.h header needs to be included to get the definition of the
FILE type.
Fixes: b32c0a2c5e4c ("pipeline: add SWX table update high level API")
Fixes: 3ca60ceed79a ("pipeline: add SWX pipeline specification file")
Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
Reviewed-by: David Marchand <david.marchand at redhat.com>
---
lib/librte_pipeline/rte_swx_ctl.h | 1 +
lib/librte_pipeline/rte_swx_pipeline.h | 1 +
2 files changed, 2 insertions(+)
diff --git a/lib/librte_pipeline/rte_swx_ctl.h b/lib/librte_pipeline/rte_swx_ctl.h
index bab1894944..32815b69e2 100644
--- a/lib/librte_pipeline/rte_swx_ctl.h
+++ b/lib/librte_pipeline/rte_swx_ctl.h
@@ -15,6 +15,7 @@ extern "C" {
#include <stddef.h>
#include <stdint.h>
+#include <stdio.h>
#include <rte_compat.h>
diff --git a/lib/librte_pipeline/rte_swx_pipeline.h b/lib/librte_pipeline/rte_swx_pipeline.h
index d0a3439edf..f0a2cef777 100644
--- a/lib/librte_pipeline/rte_swx_pipeline.h
+++ b/lib/librte_pipeline/rte_swx_pipeline.h
@@ -15,6 +15,7 @@ extern "C" {
#include <stddef.h>
#include <stdint.h>
+#include <stdio.h>
#include <rte_compat.h>
--
2.29.2
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2021-02-05 11:18:37.643653760 +0000
+++ 0189-pipeline-fix-missing-header-includes.patch 2021-02-05 11:18:29.142697509 +0000
@@ -1 +1 @@
-From cd93ec896191060310ec8761b3a10a5e02bc841c Mon Sep 17 00:00:00 2001
+From 1bc86cf411d7b6ce3edbae7307d94474c20d6160 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit cd93ec896191060310ec8761b3a10a5e02bc841c ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org
More information about the stable
mailing list