From 8b2928c978c5546d3a0c1cac13c7234718ed2359 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Thu, 6 Apr 2017 11:18:21 +0100 Subject: [PATCH] ethdev: fix missing function in version map file The function rte_eth_find_next is missing in the map file, which causes errors with shared library builds. .../test-pmd/testpmd.c:1693: undefined reference to `rte_eth_find_next' Adding function to map file fixes the issue. Fixes: 5588909af21b ("ethdev: add device iterator") Signed-off-by: Bruce Richardson --- lib/librte_ether/rte_ether_version.map | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/librte_ether/rte_ether_version.map b/lib/librte_ether/rte_ether_version.map index c6c9d0d76f..0ea3856949 100644 --- a/lib/librte_ether/rte_ether_version.map +++ b/lib/librte_ether/rte_ether_version.map @@ -154,3 +154,10 @@ DPDK_17.02 { rte_flow_validate; } DPDK_16.11; + +DPDK_17.05 { + global: + + rte_eth_find_next; + +} DPDK_17.02; -- 2.20.1