[dpdk-dev] map: add rte_eth_tx_done_cleanup to rte_ether_version.map

Message ID 20170622110854.19822-1-lboccass@brocade.com (mailing list archive)
State Superseded, archived
Headers

Checks

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

Commit Message

Luca Boccassi June 22, 2017, 11:08 a.m. UTC
  From: Luca Boccassi <luca.boccassi@gmail.com>

Commit 44a718c457b added rte_eth_tx_done_cleanup but it wasn't added
to the rte_ether_version.map so it cannot be used by applications
linking to shared libraries.
pktgen uses it since commit 44a718c457b

Fixes: 44a718c457 ("ethdev: add API to free consumed buffers in Tx ring")

Signed-off-by: Luca Boccassi <luca.boccassi@gmail.com>
---
 lib/librte_ether/rte_ether_version.map | 1 +
 1 file changed, 1 insertion(+)
  

Patch

diff --git a/lib/librte_ether/rte_ether_version.map b/lib/librte_ether/rte_ether_version.map
index 805e6de80..a21aa70d0 100644
--- a/lib/librte_ether/rte_ether_version.map
+++ b/lib/librte_ether/rte_ether_version.map
@@ -151,6 +151,7 @@  DPDK_17.05 {
 DPDK_17.08 {
 	global:
 
+	rte_eth_tx_done_cleanup;
 	rte_flow_isolate;
 
 } DPDK_17.05;