mempool: remove inline functions from export list
authorFady Bader <fady@mellanox.com>
Wed, 22 Apr 2020 07:37:44 +0000 (10:37 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 24 Apr 2020 16:11:49 +0000 (18:11 +0200)
commit036d82365e7e26adc5061cae49778f96c431e697
treec6b2ee013559476f011c4aa6f8ca61fea5f3de83
parent7b63fb3b8441d8c9eecddf110232ce95aaf5c296
mempool: remove inline functions from export list

The code didn't compile when using exported mempool functions
under Windows.

compilation error logs:
rte_mempool_exports.def : error LNK2001:
unresolved external symbol rte_mempool_cache_flush
rte_mempool_exports.def : error LNK2001:
unresolved external symbol rte_mempool_default_cache
rte_mempool_exports.def : error LNK2001:
unresolved external symbol rte_mempool_generic_get
rte_mempool_exports.def : error LNK2001:
unresolved external symbol rte_mempool_generic_put
lib\librte_mempool.dll.a : fatal error LNK1120: 4 unresolved externals
clang: error: linker command failed with exit code 1120 (use -v to see invocation)

The cause was that there were some inline functions that were included
in the export list.
To solve this the functions, which are implemented in the header
and shouldn't be exported, were removed from rte_mempool_version.map
export list.

Fixes: 4b5062755aa7 ("mempool: allow user-owned cache")
Fixes: 656f2d3ede96 ("mempool: deprecate specific get and put functions")
Cc: stable@dpdk.org
Signed-off-by: Fady Bader <fady@mellanox.com>
Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>
lib/librte_mempool/rte_mempool_version.map