From 7252e22479a8d16af3b2fcb366732ba85c9224b1 Mon Sep 17 00:00:00 2001 From: Christian Ehrhardt Date: Tue, 4 Oct 2016 12:48:51 +0200 Subject: Fix dl_open issues in ip_pipeline Update d/p/dpdk-dev-examples-ip_pipeline-fix-pmd-driver-parameter.patch fixing dl_open issues Change-Id: I338bd8ba4375a412a892ec803f1a2d3c9d1aa6a8 Signed-off-by: Christian Ehrhardt --- .../dpdk-dev-examples-ip_pipeline-fix-pmd-driver-parameter.patch | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/patches/dpdk-dev-examples-ip_pipeline-fix-pmd-driver-parameter.patch b/debian/patches/dpdk-dev-examples-ip_pipeline-fix-pmd-driver-parameter.patch index 459e0914..6ee2a7ef 100644 --- a/debian/patches/dpdk-dev-examples-ip_pipeline-fix-pmd-driver-parameter.patch +++ b/debian/patches/dpdk-dev-examples-ip_pipeline-fix-pmd-driver-parameter.patch @@ -6,12 +6,16 @@ There is typo in init.c of ip_pipeline example due to which, invalid file path is added to -d option of EAL i.e path starting with =. +*Update* +There was an issue identified in http://dpdk.org/dev/patchwork/patch/16363/ +which is folded in here to stay at just one patch. + Signed-off-by: Gowrishankar Muthukrishnan Acked-by: Cristian Dumitrescu Origin: Upstream, http://dpdk.org/dev/patchwork/patch/15995/ Author: Gowrishankar Muthukrishnan -Last-update: 2016-09-29 +Last-update: 2016-10-04 --- examples/ip_pipeline/init.c | 2 +- @@ -26,7 +30,7 @@ index cd167f6..27b0aa7 100644 if (p->add_driver) { - snprintf(buffer, sizeof(buffer), "-d=%s", p->add_driver); -+ snprintf(buffer, sizeof(buffer), "-d %s", p->add_driver); ++ snprintf(buffer, sizeof(buffer), "-d%s", p->add_driver); app->eal_argv[n_args++] = strdup(buffer); } -- cgit 1.2.3-korg