From mboxrd@z Thu Jan 1 00:00:00 1970 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=r/uj5vcN5S860+DJpu5PlneRzRMAweooazO+DeQ57S8=; b=O2zPnr/WcCqn5wYYvqNxHFhWzRk5YB8rrdQEMX1NTcsiiMYVUtRZdSGaJS5skPqOeI g/6xWQ4b9qC2pqYGXqqyBpSP5mfFQ7YG1iIfuXutmkOckctHXFghv/OoeF3iwzB1GDo+ UXXJFAQHguWdpmNIBbW+1qJkUr405XU6PpInAGdln8c1cITzGmHKyvRiEqM2DSrNk3Qy fn6oHaHM5pA8nvGuVE6YcKG8iolibuvd605s5kwh4CbODjRwPuf9vedhuzRq7J9CawUA DHHUJ8JHFA5jplqD8orugnf/i9XFIUtqwJx8hMry2MiQlBxXWL5+U31my457fS745Voy Of+g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=r/uj5vcN5S860+DJpu5PlneRzRMAweooazO+DeQ57S8=; b=SeEqzx9HlWsYn4gDaCqHS0qKhc9DadGdW07CsbSsXrO5M3/TqQdeH3dCjS+9C8viCk Xitj58SE7O0MZazbqW3jdbddQXiLe4jjp5sLCCnsqR9yuSdacq4bDDTCryTAgtTsiKSf DS+3jKt+86wWqraQEB/swSqcZC8dksTeDV/P0oy+/Eem54ZPd1VXy6PgQ+quMLu6X+i0 MqtZz+5vnZiVyrLEyent9o+4GJIaFLo+rxtI2iPfnprb8fvjHhrwbv0D8i7jm8lfGiBX Z1WDlbfzO+/PGJAXk3AJpAPvmwuMsndQ+CsLP27aEUXX6PA30ZGMMwTtfELeCMhfgGG1 pJJg== X-Gm-Message-State: AG10YOQJzTXWwI6fDmHunfJl5SMXLv0D0z6BXhZl2if5/es/qmHfVJI4OAtSgy8HhIohbz/d X-Received: by 10.194.116.197 with SMTP id jy5mr22693948wjb.43.1453887377355; Wed, 27 Jan 2016 01:36:17 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id b127sm7322903wmh.9.2016.01.27.01.36.15 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 27 Jan 2016 01:36:16 -0800 (PST) From: Thomas Monjalon To: Stephen Hemminger Date: Wed, 27 Jan 2016 10:35:07 +0100 Message-ID: <2472408.eX2UutbLPe@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1450312714-10979-1-git-send-email-stephen@networkplumber.org> References: <1450312714-10979-1-git-send-email-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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: Wed, 27 Jan 2016 09:36:17 -0000 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 :)