From: Bruce Richardson Date: Thu, 6 Apr 2017 10:18:21 +0000 (+0100) Subject: ethdev: fix missing function in version map file X-Git-Tag: spdx-start~3759 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=8b2928c978c5546d3a0c1cac13c7234718ed2359;p=dpdk.git 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 --- 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;