From mboxrd@z Thu Jan 1 00:00:00 1970 From: Remy Horton Subject: [PATCH v1] eal: fix missing symbol exports Date: Mon, 20 Jun 2016 10:59:00 +0100 Message-ID: <1466416740-17421-1-git-send-email-remy.horton@intel.com> Cc: dev@dpdk.org To: thomas.monjalon@6wind.com Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 5D5BA8D95 for ; Mon, 20 Jun 2016 11:59:03 +0200 (CEST) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The KeepAlive rte_keepalive_mark_sleep function was not being exported. Fixes: 90c622f35679 ("keepalive: add liveness callback") Signed-off-by: Remy Horton --- 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(+) 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; -- 2.5.5