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 E32E5A04DB; Thu, 15 Oct 2020 17:36:00 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B81C21EACA; Thu, 15 Oct 2020 17:35:45 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 5F1651EA5D for ; Thu, 15 Oct 2020 17:35:43 +0200 (CEST) IronPort-SDR: 8oVUPyR4cOKRH9P+6BUnVrUpTuOm0k8GGl9J00TvzVr1WiFrGZVz0iHuGfb3On3mI4EdSDI5Yv ztFm5rSfmcpQ== X-IronPort-AV: E=McAfee;i="6000,8403,9775"; a="153312804" X-IronPort-AV: E=Sophos;i="5.77,379,1596524400"; d="scan'208";a="153312804" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Oct 2020 08:35:42 -0700 IronPort-SDR: E7zlrHHX1uKIlRumBdlqERiC0URpusoRNGSjgLwZqLeN2/z0eDJu2Q8CEdBNK8LI0UiGbvL6U9 UIaIbXEWK9Ow== X-IronPort-AV: E=Sophos;i="5.77,379,1596524400"; d="scan'208";a="521882188" Received: from bricha3-mobl.ger.corp.intel.com ([10.213.245.94]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 15 Oct 2020 08:35:33 -0700 Date: Thu, 15 Oct 2020 16:35:29 +0100 From: Bruce Richardson To: 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 , Andrew Rybchenko , Kiran Kumar K , Nithin Dabilpuram Message-ID: <20201015153529.GF554@bricha3-MOBL.ger.corp.intel.com> References: <20200916164429.244847-1-bruce.richardson@intel.com> <20201015150554.950838-1-bruce.richardson@intel.com> <20201015150554.950838-8-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201015150554.950838-8-bruce.richardson@intel.com> 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 Thu, Oct 15, 2020 at 04:05:53PM +0100, 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 > Also adding Luca's ack from v3: Acked-by: Luca Boccassi