From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP; 20 Jun 2016 02:59:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,497,1459839600"; d="scan'208";a="1005768973" Received: from rhorton-mobl.ger.corp.intel.com (HELO VM.ir.intel.com) ([163.33.228.132]) by fmsmga002.fm.intel.com with ESMTP; 20 Jun 2016 02:59:02 -0700 From: Remy Horton To: thomas.monjalon@6wind.com Cc: dev@dpdk.org Date: Mon, 20 Jun 2016 10:59:00 +0100 Message-Id: <1466416740-17421-1-git-send-email-remy.horton@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dpdk-dev] [PATCH v1] eal: fix missing symbol exports X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Jun 2016 09:59:03 -0000 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