From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 30F64A04DB; Thu, 15 Oct 2020 17:33:04 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B6FF11DD02; Thu, 15 Oct 2020 17:32:18 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by dpdk.org (Postfix) with ESMTP id 8C1461DA5F for ; Thu, 15 Oct 2020 17:32:16 +0200 (CEST) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 25F957F56C; Thu, 15 Oct 2020 18:32:15 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 25F957F56C DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1602775935; bh=8xS8SEP7MelbX4XUKWY7iTFcF2Q4RaBm0ASnHVZSaMo=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=r6GgO3WpSzoaC6RWFagXjKsJvAsjaPixUpESf8nSqdRxYGd4rrhuNg8repaMUJpPs 8pjrUYTg753KxLHSvitUSu8PSXuSNnwy43AvzIiiTvd4KekSDr/opIc5cjxzDLysNU uSAaGGLFql1lOON44tVxwyJEfL5qDNP7uodtV6p8= To: Bruce Richardson , dev@dpdk.org Cc: david.marchand@redhat.com, arybchenko@solarflare.com, ferruh.yigit@intel.com, thomas@monjalon.net, bluca@debian.org, Nicolas Chautru , Declan Doherty , Wenzhuo Lu , Beilei Xing , Bernard Iremonger , Ray Kinsella , Neil Horman , Matan Azrad , Shahaf Shuler , Viacheslav Ovsiienko , Fiona Trahe , John Griffin , Deepak Kumar Jain , Ashish Gupta , Anoob Joseph , Ankur Dwivedi , Fan Zhang , Jay Zhou , Hemant Agrawal , Nipun Gupta , Jerin Jacob , Pavan Nikhilesh , Rosen Xu , Tianfei zhang , Chas Williams , "Min Hu (Connor)" , Xiaoyun Li , Jingjing Wu , David Hunt , Kiran Kumar K , Nithin Dabilpuram References: <20200916164429.244847-1-bruce.richardson@intel.com> <20201015150554.950838-1-bruce.richardson@intel.com> <20201015150554.950838-8-bruce.richardson@intel.com> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <9ac2a5a9-2d07-81e6-211e-2dfb05f25f9c@oktetlabs.ru> Date: Thu, 15 Oct 2020 18:32:14 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.3.1 MIME-Version: 1.0 In-Reply-To: <20201015150554.950838-8-bruce.richardson@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v5 7/8] build: standardize component names and defines X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 10/15/20 6:05 PM, Bruce Richardson wrote: > As discussed on the dpdk-dev mailing list[1], we can make some easy > improvements in standardizing the naming of the various components in DPDK, > and their associated feature-enabled macros. > > Following this patch, each library will have the name in format, > 'librte_.so', and the macro indicating that library is enabled in the > build will have the form 'RTE_LIB_'. > > Similarly, for libraries, the equivalent name formats and macros are: > 'librte__.so' and 'RTE__', where class is the > device type taken from the relevant driver subdirectory name, i.e. 'net', > 'crypto' etc. > > To avoid too many changes at once for end applications, the old macro names > will still be provided in the build in this release, but will be removed > subsequently. > > Signed-off-by: Bruce Richardson Acked-by: Andrew Rybchenko