[dpdk-dev] ethdev: fix missing function in version map file

Message ID 20170406101821.12984-1-bruce.richardson@intel.com (mailing list archive)
State Accepted, archived
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Bruce Richardson April 6, 2017, 10:18 a.m. UTC
  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 <bruce.richardson@intel.com>
---
 lib/librte_ether/rte_ether_version.map | 6 ++++++
 1 file changed, 6 insertions(+)
  

Comments

Thomas Monjalon April 6, 2017, 10:50 a.m. UTC | #1
2017-04-06 11:18, Bruce Richardson:
> 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 <bruce.richardson@intel.com>

Applied, thanks

I missed it because I was not checking build of apps by mistake.
  

Patch

diff --git a/lib/librte_ether/rte_ether_version.map b/lib/librte_ether/rte_ether_version.map
index c6c9d0d..318a852 100644
--- a/lib/librte_ether/rte_ether_version.map
+++ b/lib/librte_ether/rte_ether_version.map
@@ -154,3 +154,9 @@  DPDK_17.02 {
 	rte_flow_validate;
 
 } DPDK_16.11;
+
+DPDK_17.05 {
+	global:
+
+	rte_eth_find_next;
+} DPDK_17.02;