From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id E33277CAB for ; Fri, 1 Sep 2017 13:24:42 +0200 (CEST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP; 01 Sep 2017 04:24:41 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,457,1498546800"; d="scan'208";a="124670346" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.57]) ([10.237.220.57]) by orsmga004.jf.intel.com with ESMTP; 01 Sep 2017 04:24:40 -0700 To: Adrien Mazarguil , dev@dpdk.org References: From: Ferruh Yigit Message-ID: <2aceb1d3-6444-03af-d859-20d69b2e370d@intel.com> Date: Fri, 1 Sep 2017 12:24:40 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 00/51] net/mlx4: trim and refactor entire PMD 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: , X-List-Received-Date: Fri, 01 Sep 2017 11:24:43 -0000 Hi Adrien, On 9/1/2017 9:06 AM, Adrien Mazarguil wrote: > The main purpose of this large series is to relieve the mlx4 PMD from its > dependency on Mellanox OFED to instead rely on the standard rdma-core > package provided by Linux distributions. > > While compatibility with Mellanox OFED is preserved, all nonstandard > functionality has to be stripped from the PMD in order to re-implement it > through an approach compatible with rdma-core. > > Due to the amount of changes necessary to achieve this goal, this rework > starts off by removing extraneous code to simplify the PMD as much as > possible before either replacing or dismantling functionality that relies on > nonstandard Verbs. > > What remains after applying this series is single-segment Tx/Rx support, > without offloads nor RSS, on the default MAC address (which cannot be > configured). Support for multiple queues and the flow API (minus the RSS > action) are also preserved. > > Missing functionality that needs substantial work will be restored later by > subsequent series. Thanks for comprehensive re-work, out of curiosity, is adding removed functionality planned for this release? > > Also because the mlx4 PMD is mostly contained in a single very large source > file of 6400+ lines (mlx4.c) which has become extremely difficult to > maintain, this rework is used as an opportunity to finally group functions > into separate files, as in mlx5. > > This rework targets DPDK 17.11. <...>