From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f170.google.com (mail-wi0-f170.google.com [209.85.212.170]) by dpdk.org (Postfix) with ESMTP id 55D30C688 for ; Fri, 31 Jul 2015 17:09:32 +0200 (CEST) Received: by wibxm9 with SMTP id xm9so38026276wib.0 for ; Fri, 31 Jul 2015 08:09:32 -0700 (PDT) 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:mime-version:content-transfer-encoding:content-type; bh=u6mqu9zVcGnxB7FsOkufOluSzyhhh0XovxNiJDW4t7k=; b=jdbmbV7zlX5zV2WAik6/hoAGqzrp4KK0Gaalxl593tmaaaV11tukh+MKBhFIgKnpr+ ori3ulH8AQXNh/MGbl2Pw+eiygD+hYSnK4NXFNOlm8Xudzzks68YGJmY1zd2f8/e8dRj NLFIVxKEDZ/L2noGK8N0I44LKCKodJrzLYPZrcHYAtDbUmHfFnR1NElS9JIzWLRdddih J1JiZ6b2/TquTk3IEp/0lhsBjHhBiOZtaJKB78E8KYnkmeeFw3yODdLKNVrv6kYwr8Lr tU1ldaPdGzJM95Qeo7QAAEavCvGpoDohDQpf9MmfaGw/WBOzbefsS2OzQ9L8xSBXdLFV sw7w== X-Gm-Message-State: ALoCoQmBEEL7fttEvflkP993jcb54x62HvGyC4j/SX1WIKP4qmbNN54XRVyU9myILkEee+ueTecG X-Received: by 10.194.109.229 with SMTP id hv5mr7247801wjb.119.1438355372208; Fri, 31 Jul 2015 08:09:32 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id ev8sm7636581wjb.8.2015.07.31.08.09.30 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 31 Jul 2015 08:09:31 -0700 (PDT) From: Thomas Monjalon To: Helin Zhang , Konstantin Ananyev , Bruce Richardson Date: Fri, 31 Jul 2015 17:08:16 +0200 Message-ID: <2490473.jjJga3lrlm@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: [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:09:32 -0000 Hi, 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: --- config/common_bsdapp +++ config/common_linuxapp -CONFIG_RTE_IXGBE_INC_VECTOR=n +CONFIG_RTE_IXGBE_INC_VECTOR=y -CONFIG_RTE_IXGBE_RX_OLFLAGS_DISABLE=n +CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=y -CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=n +CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=y Can we enable ixgbe SSE on BSD? CONFIG_RTE_IXGBE_RX_OLFLAGS_DISABLE must be renamed to CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE, or can we remove this option? Can we remove i40e bulk alloc option? Why IEEE1588 is disabled? Can we remove this option? Please help to fix it for the release 2.1. 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= OS= CC= Thoughts?