Fix dl_open issues in ip_pipeline 41/3241/1
authorChristian Ehrhardt <christian.ehrhardt@canonical.com>
Tue, 4 Oct 2016 10:48:51 +0000 (12:48 +0200)
committerChristian Ehrhardt <christian.ehrhardt@canonical.com>
Tue, 4 Oct 2016 10:50:33 +0000 (12:50 +0200)
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>
debian/patches/dpdk-dev-examples-ip_pipeline-fix-pmd-driver-parameter.patch

index 459e091..6ee2a7e 100644 (file)
@@ -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);
        }