From patchwork Fri Oct 18 11:15:53 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Cao, Yahui" X-Patchwork-Id: 61447 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C3A971E53E; Fri, 18 Oct 2019 05:33:42 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 45B4C1E533 for ; Fri, 18 Oct 2019 05:33:41 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Oct 2019 20:33:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,310,1566889200"; d="scan'208";a="202577903" Received: from dpdk-yahui-skylake.sh.intel.com ([10.67.119.16]) by FMSMGA003.fm.intel.com with ESMTP; 17 Oct 2019 20:33:39 -0700 From: Yahui Cao To: Qiming Yang , Wenzhuo Lu Cc: dev@dpdk.org, Qi Zhang , Xiaolong Ye , Beilei Xing , Yahui Cao Date: Fri, 18 Oct 2019 19:15:53 +0800 Message-Id: <20191018111602.26742-1-yahui.cao@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20191017160454.14518-1-yahui.cao@intel.com> References: <20191017160454.14518-1-yahui.cao@intel.com> Subject: [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" 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 Reviewed-by: Xiaolong Ye --- 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