[dpdk-dev,v1] eal: fix missing symbol exports

Message ID 1466416740-17421-1-git-send-email-remy.horton@intel.com (mailing list archive)
State Accepted, archived
Headers

Commit Message

Remy Horton June 20, 2016, 9:59 a.m. UTC
  The KeepAlive rte_keepalive_mark_sleep function was not being exported.

Fixes: 90c622f35679 ("keepalive: add liveness callback")

Signed-off-by: Remy Horton <remy.horton@intel.com>
---
 lib/librte_eal/bsdapp/eal/rte_eal_version.map   | 1 +
 lib/librte_eal/linuxapp/eal/rte_eal_version.map | 1 +
 2 files changed, 2 insertions(+)
  

Comments

Thomas Monjalon June 20, 2016, 10:22 a.m. UTC | #1
2016-06-20 10:59, Remy Horton:
> The KeepAlive rte_keepalive_mark_sleep function was not being exported.
> 
> Fixes: 90c622f35679 ("keepalive: add liveness callback")
> 
> Signed-off-by: Remy Horton <remy.horton@intel.com>

I missed it during the review.

Applied, thanks
  

Patch

diff --git a/lib/librte_eal/bsdapp/eal/rte_eal_version.map b/lib/librte_eal/bsdapp/eal/rte_eal_version.map
index 3b4dd3b..1852c4a 100644
--- a/lib/librte_eal/bsdapp/eal/rte_eal_version.map
+++ b/lib/librte_eal/bsdapp/eal/rte_eal_version.map
@@ -156,6 +156,7 @@  DPDK_16.07 {
 	global:
 
 	pci_get_sysfs_path;
+	rte_keepalive_mark_sleep;
 	rte_keepalive_register_relay_callback;
 	rte_thread_setname;
 
diff --git a/lib/librte_eal/linuxapp/eal/rte_eal_version.map b/lib/librte_eal/linuxapp/eal/rte_eal_version.map
index 7330a46..0513467 100644
--- a/lib/librte_eal/linuxapp/eal/rte_eal_version.map
+++ b/lib/librte_eal/linuxapp/eal/rte_eal_version.map
@@ -159,6 +159,7 @@  DPDK_16.07 {
 	global:
 
 	pci_get_sysfs_path;
+	rte_keepalive_mark_sleep;
 	rte_keepalive_register_relay_callback;
 	rte_thread_setname;