From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 6EE58C70E for ; Fri, 31 Jul 2015 17:41:51 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 31 Jul 2015 08:41:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,585,1432623600"; d="scan'208";a="774119700" Received: from irsmsx108.ger.corp.intel.com ([163.33.3.3]) by fmsmga002.fm.intel.com with ESMTP; 31 Jul 2015 08:41:51 -0700 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.223]) by IRSMSX108.ger.corp.intel.com ([169.254.11.22]) with mapi id 14.03.0224.002; Fri, 31 Jul 2015 16:41:49 +0100 From: "Ananyev, Konstantin" To: Thomas Monjalon , "Zhang, Helin" , "Richardson, Bruce" Thread-Topic: config files maintenance Thread-Index: AQHQy6Lwl0hrZrnvUEO6x1ZASKDENJ31tuVw Date: Fri, 31 Jul 2015 15:41:48 +0000 Message-ID: <2601191342CEEE43887BDE71AB97725836A6BABE@irsmsx105.ger.corp.intel.com> References: <2490473.jjJga3lrlm@xps13> In-Reply-To: <2490473.jjJga3lrlm@xps13> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] config files maintenance 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: Fri, 31 Jul 2015 15:41:52 -0000 Hi Thomas, > -----Original Message----- > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > Sent: Friday, July 31, 2015 4:08 PM > To: Zhang, Helin; Ananyev, Konstantin; Richardson, Bruce > Cc: dev@dpdk.org > Subject: config files maintenance >=20 > Hi, >=20 > Currently most of the build options are duplicated in 2 config files. > They should be merged in a common file to avoid this kind of differences: >=20 > --- config/common_bsdapp > +++ config/common_linuxapp > -CONFIG_RTE_IXGBE_INC_VECTOR=3Dn > +CONFIG_RTE_IXGBE_INC_VECTOR=3Dy > -CONFIG_RTE_IXGBE_RX_OLFLAGS_DISABLE=3Dn > +CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=3Dy > -CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=3Dn > +CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=3Dy >=20 > Can we enable ixgbe SSE on BSD? I think yes, though I never tried myself to run vecPMD on freebsd. > CONFIG_RTE_IXGBE_RX_OLFLAGS_DISABLE must be renamed to > CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE, or can we remove this option? I think we can remove RTE_IXGBE_RX_OLFLAGS_ENABLE. Konstantin > Can we remove i40e bulk alloc option? > Why IEEE1588 is disabled? Can we remove this option? >=20 > Please help to fix it for the release 2.1. >=20 > After fixing the config, we have to think about simplifying it in 2.2. > It would be easier to have some kind of config overlays: > config_base > config_bsd > config_linux > config_osv > config_gcc > config_icc > config_clang > config_i686 > config_x86_64 > config_x86_x32 > config_ppc_64 > config_tile-tilegx > Then the defconfig files would include the above files. > Or better, we could allow some paramaters to make config: > make config ARCH=3D OS=3D CC=3D >=20 > Thoughts?