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 5069FA318B for ; Fri, 18 Oct 2019 08:46:29 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B7A854C8B; Fri, 18 Oct 2019 08:46:27 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 1CDA32F42 for ; Fri, 18 Oct 2019 08:46:25 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Oct 2019 23:46:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,310,1566889200"; d="scan'208";a="202613193" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by FMSMGA003.fm.intel.com with ESMTP; 17 Oct 2019 23:46:23 -0700 Date: Fri, 18 Oct 2019 14:43:34 +0800 From: Ye Xiaolong To: Yahui Cao Cc: Qiming Yang , Wenzhuo Lu , dev@dpdk.org, Qi Zhang , Beilei Xing Message-ID: <20191018064334.GV3725@intel.com> References: <20191017160454.14518-1-yahui.cao@intel.com> <20191018111602.26742-1-yahui.cao@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191018111602.26742-1-yahui.cao@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v7 0/9] net/ice: add ice Flow Director driver 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/18, Yahui Cao wrote: >This patch series adds Flow Director support for Intel Ethernet >Controller E810 series using RTE_FLOW > >- Patch 01-02 are FDIR init,teardown and configuration >- Remaining patches are FDIR RTE_FLOW enablement > >--- >v7: >* Fix shared library build error > >v6: >* Fix build error on different platform > >v5: >* Add GTPU rule support >* Fix tunnel profile conflict issue >* Update filter counter > >v4: >* Remove rte_wmb. >* Update input set mapping table. >* Remove all created profiles during teardown >* Fix tunnel rule duplication detection failure >* Change function name > >v3: >* Get flow id in flexible descriptor >* Add vxlan tunnel rule support > >v2: >* Move to flexible descriptor. >* Distinguish tunnel and non-tunnel rule. >* Add uninit function for fdir engine. >* Fix coding style. >* Change patch organization. >* Add release notes. > >Beilei Xing (2): > net/ice: enable flow director engine > net/ice: configure HW FDIR rule > >Yahui Cao (7): > net/ice: add FDIR create and destroy > net/ice: enable FDIR queue group > net/ice: add FDIR counter resource init/release > net/ice: add FDIR counter support > net/ice: reject duplicate flow for FDIR > net/ice: add FDIR vxlan tunnel support > net/ice: add FDIR GTPU tunnel support > > doc/guides/rel_notes/release_19_11.rst | 1 + > drivers/net/ice/Makefile | 3 +- > drivers/net/ice/ice_ethdev.c | 107 +- > drivers/net/ice/ice_ethdev.h | 96 ++ > drivers/net/ice/ice_fdir_filter.c | 1792 ++++++++++++++++++++++++ > drivers/net/ice/ice_rxtx.c | 403 ++++++ > drivers/net/ice/ice_rxtx.h | 9 + > drivers/net/ice/meson.build | 3 +- > 8 files changed, 2393 insertions(+), 21 deletions(-) > create mode 100644 drivers/net/ice/ice_fdir_filter.c > >-- >2.17.1 > Reviewed-by: Xiaolong Ye Series applied to dpdk-next-net-intel. Thanks, Xiaolong