From: Remy Horton Date: Mon, 20 Jun 2016 09:59:00 +0000 (+0100) Subject: keepalive: fix missing symbol export X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=5a592d35c050c8c8ec25ecb50bd0fe0f938fc627;p=dpdk.git keepalive: fix missing symbol export The KeepAlive rte_keepalive_mark_sleep function was not being exported. Fixes: 90c622f35679 ("keepalive: add liveness callback") Signed-off-by: Remy Horton --- diff --git a/lib/librte_eal/bsdapp/eal/rte_eal_version.map b/lib/librte_eal/bsdapp/eal/rte_eal_version.map index 3b4dd3b686..1852c4a4a9 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 7330a46bc6..05134673d6 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;