diff options
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/dpdk-dev-examples-ip_pipeline-fix-pmd-driver-parameter.patch | 8 |
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); } |