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 E6E2FA3201 for ; Mon, 21 Oct 2019 08:08:02 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2C61A29AC; Mon, 21 Oct 2019 08:08:01 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id C5F15E07 for ; Mon, 21 Oct 2019 08:07:59 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Oct 2019 23:07:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,322,1566889200"; d="scan'208";a="222362263" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by fmsmga004.fm.intel.com with ESMTP; 20 Oct 2019 23:07:58 -0700 Date: Mon, 21 Oct 2019 14:04:57 +0800 From: Ye Xiaolong To: Harry van Haaren Cc: dev@dpdk.org, qi.z.zhang@intel.com, mesut.a.ergin@intel.com Message-ID: <20191021060457.GA4930@intel.com> References: <20191007090731.90073-1-harry.van.haaren@intel.com> <20191009152006.5768-1-harry.van.haaren@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191009152006.5768-1-harry.van.haaren@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v2 0/3] net/i40e: add FDIR ID to vector rx 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 10/09, Harry van Haaren wrote: >v2: >- Improve RSS clearning in SSE 16B descriptor >- Fix AVX 16B descriptor data handling > >--- > >Hey All, > >This series adds FDIR ID support to the vector Rx routines. >Support for both the SSE and AVX drivers is added, and both >the 16 byte and 32 byte descriptors are implemented. > >A v1/RFC for this functionality was sent in 19.08 timeframe, >refer to the patch as archived on patchwork here: >http://patches.dpdk.org/patch/53969/ > >Regards, -Harry > >Harry van Haaren (3): > net/i40e: cache fdir enable value in rx queue > net/i40e: add flow mark capability to SSE vector routine > net/i40e: add flow director support to avx rx path > > drivers/net/i40e/i40e_ethdev.h | 1 + > drivers/net/i40e/i40e_fdir.c | 20 +++ > drivers/net/i40e/i40e_flow.c | 4 + > drivers/net/i40e/i40e_rxtx.c | 6 - > drivers/net/i40e/i40e_rxtx.h | 8 ++ > drivers/net/i40e/i40e_rxtx_vec_avx2.c | 193 +++++++++++++++++++++++++- > drivers/net/i40e/i40e_rxtx_vec_sse.c | 154 ++++++++++++++++++-- > 7 files changed, 367 insertions(+), 19 deletions(-) > >-- >2.17.1 > Series applied to dpdk-next-net-intel. Thanks, Xiaolong