[dpdk-dev] [PATCH] keepalive: fix exported symbols

2016-06-17 Thread Thomas Monjalon
The function rte_keepalive_register_alive_callback do not exist.
The function rte_keepalive_register_relay_callback was missing for BSD.

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

Signed-off-by: Thomas Monjalon 
---
 lib/librte_eal/bsdapp/eal/rte_eal_version.map   | 2 +-
 lib/librte_eal/linuxapp/eal/rte_eal_version.map | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/librte_eal/bsdapp/eal/rte_eal_version.map 
b/lib/librte_eal/bsdapp/eal/rte_eal_version.map
index 0fb1cf2..97d091b 100644
--- a/lib/librte_eal/bsdapp/eal/rte_eal_version.map
+++ b/lib/librte_eal/bsdapp/eal/rte_eal_version.map
@@ -156,6 +156,6 @@ DPDK_16.07 {
global:

pci_get_sysfs_path;
-   rte_keepalive_register_alive_callback;
+   rte_keepalive_register_relay_callback;

 } DPDK_16.04;
diff --git a/lib/librte_eal/linuxapp/eal/rte_eal_version.map 
b/lib/librte_eal/linuxapp/eal/rte_eal_version.map
index cacf9e1..4874c92 100644
--- a/lib/librte_eal/linuxapp/eal/rte_eal_version.map
+++ b/lib/librte_eal/linuxapp/eal/rte_eal_version.map
@@ -159,7 +159,6 @@ DPDK_16.07 {
global:

pci_get_sysfs_path;
-   rte_keepalive_register_alive_callback;
rte_keepalive_register_relay_callback;

 } DPDK_16.04;
-- 
2.7.0



[dpdk-dev] [PATCH] keepalive: fix exported symbols

2016-06-17 Thread Thomas Monjalon
2016-06-17 17:02, Thomas Monjalon:
> The function rte_keepalive_register_alive_callback do not exist.
> The function rte_keepalive_register_relay_callback was missing for BSD.
> 
> Fixes: 90c622f35679 ("keepalive: add liveness callback")
> 
> Signed-off-by: Thomas Monjalon 

Applied


[dpdk-dev] [PATCH] keepalive: fix exported symbols

2016-06-17 Thread Remy Horton
rte_keepalive_mark_sleep is also missing from both.

On 17/06/2016 16:02, Thomas Monjalon wrote:
> The function rte_keepalive_register_alive_callback do not exist.
> The function rte_keepalive_register_relay_callback was missing for BSD.
>
> Fixes: 90c622f35679 ("keepalive: add liveness callback")
>
> Signed-off-by: Thomas Monjalon 

Acked-by: Remy Horton