aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Ehrhardt <christian.ehrhardt@canonical.com>2016-10-04 12:48:51 +0200
committerChristian Ehrhardt <christian.ehrhardt@canonical.com>2016-10-04 12:50:33 +0200
commit7252e22479a8d16af3b2fcb366732ba85c9224b1 (patch)
treefb80bdbf3d91fd382949d82bfd1a1ad666d62916
parentd8c30817da6dcecc4140daf1f3b75f5e02e800a2 (diff)
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 <christian.ehrhardt@canonical.com>
-rw-r--r--debian/patches/dpdk-dev-examples-ip_pipeline-fix-pmd-driver-parameter.patch8
1 files 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 <gowrishankar.m@linux.vnet.ibm.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
Origin: Upstream, http://dpdk.org/dev/patchwork/patch/15995/
Author: Gowrishankar Muthukrishnan <gowrishankar.m@linux.vnet.ibm.com>
-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);
}