From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] log: add missing symbol Date: Wed, 27 Jan 2016 10:35:07 +0100 Message-ID: <2472408.eX2UutbLPe@xps13> References: <1450312714-10979-1-git-send-email-stephen@networkplumber.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Stephen Hemminger Return-path: Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52]) by dpdk.org (Postfix) with ESMTP id 7E3ED9580 for ; Wed, 27 Jan 2016 10:36:17 +0100 (CET) Received: by mail-wm0-f52.google.com with SMTP id r129so137388487wmr.0 for ; Wed, 27 Jan 2016 01:36:17 -0800 (PST) In-Reply-To: <1450312714-10979-1-git-send-email-stephen@networkplumber.org> 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" 2015-12-16 16:38, Stephen Hemminger: > rte_get_log_type and rte_get_log_level functions has been avaliable > for many versions. But they are missing from the shared library map > and therefore do not get exported correctly. > > Signed-off-by: Stephen Hemminger > --- > lib/librte_eal/linuxapp/eal/rte_eal_version.map | 2 ++ > 1 file changed, 2 insertions(+) Why only in linuxapp? > diff --git a/lib/librte_eal/linuxapp/eal/rte_eal_version.map b/lib/librte_eal/linuxapp/eal/rte_eal_version.map > index cbe175f..51a241c 100644 > --- a/lib/librte_eal/linuxapp/eal/rte_eal_version.map > +++ b/lib/librte_eal/linuxapp/eal/rte_eal_version.map > @@ -93,7 +93,9 @@ DPDK_2.0 { > rte_realloc; > rte_set_application_usage_hook; > rte_set_log_level; > + rte_get_log_level; > rte_set_log_type; > + rte_get_log_type; We try to keep an alphabetical order :)