From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id 5275A7E23 for ; Thu, 17 Dec 2015 12:20:19 +0100 (CET) Received: from hmsreliant.think-freely.org ([2001:470:8:a08:7aac:c0ff:fec2:933b] helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1a9WbY-0007tk-Gc; Thu, 17 Dec 2015 06:20:17 -0500 Date: Thu, 17 Dec 2015 06:20:10 -0500 From: Neil Horman To: Stephen Hemminger Message-ID: <20151217112010.GA27849@hmsreliant.think-freely.org> References: <1450312714-10979-1-git-send-email-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1450312714-10979-1-git-send-email-stephen@networkplumber.org> User-Agent: Mutt/1.5.24 (2015-08-30) X-Spam-Score: -1.0 (-) X-Spam-Status: No Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] log: add missing symbol 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: Thu, 17 Dec 2015 11:20:19 -0000 On Wed, Dec 16, 2015 at 04:38:34PM -0800, Stephen Hemminger wrote: > 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(+) > > 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; > rte_socket_id; > rte_strerror; > rte_strsplit; > -- > 2.1.4 > > Acked-by: Neil Horman