Drop testpmd-link-virtio.patch, not actually needed 95/10695/1
authorLuca Boccassi <luca.boccassi@gmail.com>
Mon, 19 Feb 2018 11:33:59 +0000 (11:33 +0000)
committerLuca Boccassi <luca.boccassi@gmail.com>
Mon, 19 Feb 2018 11:34:01 +0000 (11:34 +0000)
It was pointed out on the ML that this patch is actually not needed
and it was not merged.

Change-Id: I2eb38914fae7b3a22af8d7442f006c2e94069719
Signed-off-by: Luca Boccassi <luca.boccassi@gmail.com>
debian/patches/series
debian/patches/testpmd-link-virtio.patch [deleted file]

index 5034d58..5722b39 100644 (file)
@@ -1,2 +1 @@
 fix-vhost-user-socket-permission.patch
-testpmd-link-virtio.patch
diff --git a/debian/patches/testpmd-link-virtio.patch b/debian/patches/testpmd-link-virtio.patch
deleted file mode 100644 (file)
index 8386f75..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-Description: app/testpmd: link with virtio PMD when using shared libraries
- testpmd is often used inside a VM to test the OVS PVP scenario.
- This commit makes testpmd to link to virtio PMD when DPDK is built as
- shared libraries too.
-Origin: http://dpdk.org/dev/patchwork/patch/31459/
-Forwarded: yes
-Author: Timothy Redaelli <tredaelli@redhat.com>
-Last-Update: 2017-11-17
---- a/app/test-pmd/Makefile
-+++ b/app/test-pmd/Makefile
-@@ -91,6 +91,10 @@ ifeq ($(CONFIG_RTE_LIBRTE_PMD_SOFTNIC),y)
- LDLIBS += -lrte_pmd_softnic
- endif
-+ifeq ($(CONFIG_RTE_LIBRTE_VIRTIO_PMD),y)
-+LDLIBS += -lrte_pmd_virtio
-+endif
-+
- endif
- CFLAGS_cmdline.o := -D_GNU_SOURCE