From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 98F43A05D3 for ; Thu, 28 Mar 2019 00:10:32 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DC325568A; Thu, 28 Mar 2019 00:10:30 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 591A65688 for ; Thu, 28 Mar 2019 00:10:29 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Mar 2019 16:10:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,277,1549958400"; d="scan'208";a="331332815" Received: from anandraw-mobl.amr.corp.intel.com (HELO [10.121.163.141]) ([10.121.163.141]) by fmsmga006.fm.intel.com with ESMTP; 27 Mar 2019 16:10:28 -0700 From: Anand Rawat To: Thomas Monjalon Cc: "dev@dpdk.org" , "pallavi.kadam@intel.com" , "jeffrey.b.shaw@intel.com" , "bruce.richardson@intel.com" , Ranjit Menon , Jerin Jacob Kollanukkaran References: <20190306041634.12976-1-anand.rawat@intel.com> <944cfe276e570e3e6feb01a7da7c6fa03de22ee4.camel@marvell.com> <2640699.3m2PSFbs9Z@xps> Message-ID: <38de8645-b876-cce4-9594-38ffb487c82e@intel.com> Date: Wed, 27 Mar 2019 16:10:27 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 In-Reply-To: <2640699.3m2PSFbs9Z@xps> Content-Type: text/plain; charset="UTF-8"; format="flowed" Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v5 2/8] eal: add header files to support windows 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" Message-ID: <20190327231027.BVL9hzLYMFuKby3evTebhvrzD47hE0cRg9T-QUy37Sg@z> On 3/27/2019 3:29 PM, Thomas Monjalon wrote: > 27/03/2019 22:23, Ranjit Menon: > > On 3/26/2019 3:20 AM, Jerin Jacob Kollanukkaran wrote: > >> On Mon, 2019-03-25 at 23:02 -0700, Anand Rawat wrote: > >>> Added header files to support windows on x86 platforms. > >>> Updated rte_common.h to include rte_windows.h for windows > >>> build. Updated lib/meson.build to create shared libraries > >>> on windows. Added def file to list the exports for the > >>> eal library. > >>> > >>> Signed-off-by: Anand Rawat > >>> Signed-off-by: Pallavi Kadam > >>> Signed-off-by: Bruce Richardson > >>> Reviewed-by: Jeff Shaw > >>> Reviewed-by: Ranjit Menon > >>> --- > >>>    lib/librte_eal/common/include/rte_common.h    |  7 ++++- > >>>    .../common/include/rte_string_fns.h           |  4 ++- > >>>    lib/librte_eal/rte_eal_exports.def            |  9 ++++++ > >>>    .../windows/eal/include/rte_windows.h         | 30 > >>> +++++++++++++++++++ > >>>    lib/librte_eal/windows/eal/meson.build        |  2 ++ > >>>    lib/meson.build                               | 19 ++++++++++-- > >>>    6 files changed, 66 insertions(+), 5 deletions(-) > >>>    create mode 100644 lib/librte_eal/rte_eal_exports.def > >>>    create mode 100644 lib/librte_eal/windows/eal/include/rte_windows.h > >>> > >>> diff --git a/lib/librte_eal/common/include/rte_common.h > >>> b/lib/librte_eal/common/include/rte_common.h > >>> index 7178ba1e9..4775c84f5 100644 > >>> --- a/lib/librte_eal/common/include/rte_common.h > >>> +++ b/lib/librte_eal/common/include/rte_common.h > >>> @@ -1,5 +1,5 @@ > >>>    /* SPDX-License-Identifier: BSD-3-Clause > >>> - * Copyright(c) 2010-2014 Intel Corporation > >>> + * Copyright(c) 2010-2019 Intel Corporation > >>>     */ > >>> > >>>    #ifndef _RTE_COMMON_H_ > >>> @@ -24,6 +24,11 @@ extern "C" { > >>> > >>>    #include > >>> > >>> +/* windows specific*/ > >>> +#ifdef RTE_EXEC_ENV_WINDOWS > >>> +#include > >>> +#endif > >>> + > >> > >> IMO, Updating the rte_common.h for each execution environment is not > >> clean and unnecessary #ifdef clutter in the common code. > >> > >> I think, it can be fixed by adding new os or eal specific header file > >> at the following location and simply include it(without any #ifdef) > >> > >> lib/librte_eal/linux/eal/include/exec-env/rte_eal.h > >> lib/librte_eal/freebsd/eal/include/exec-env/rte_eal.h > >> lib/librte_eal/windows/eal/include/exec-env/rte_eal.h # the content of > >> exiting rte_windows.h goes here. > >> > >> It can be rte_eal.h or rte_os.h or anything similar. > >> > >> > > This was done based on a suggestion from Thomas: > > (http://patches.dpdk.org/patch/50844/) > > > > But, I agree. Your suggestion would be a good enhancement. There is > > already an existing rte_eal.h in common/include, so an rte_os.h or > > something similar might make sense. > > Yes I agree with rte_os.h > > I can include this change in v6. I am looking to add rte_os.h under windows/eal/include/exec-env/ and include the header in rte_common.h as a separate patch. This change would require new files for linux and freebsd. What be should be the content of that? -- Anand Rawat