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 55D9AA0613 for ; Mon, 23 Sep 2019 20:25:50 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 18EAE1BEB3; Mon, 23 Sep 2019 20:25:50 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id F034F1BE97 for ; Mon, 23 Sep 2019 20:25:47 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Sep 2019 11:25:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,541,1559545200"; d="scan'208";a="203181798" Received: from dpdk-yahui-skylake.sh.intel.com ([10.67.119.16]) by fmsmga001.fm.intel.com with ESMTP; 23 Sep 2019 11:25:45 -0700 From: Yahui Cao To: Qiming Yang , Wenzhuo Lu Cc: dev@dpdk.org, Qi Zhang , Xiaolong Ye , Beilei Xing , Yahui Cao Date: Tue, 24 Sep 2019 10:10:33 +0800 Message-Id: <20190924021040.77648-1-yahui.cao@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH 0/7] 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 The patchset depends on: http://patchwork.dpdk.org/project/dpdk/list/?series=6420 --- v2: * Move to flexible descriptor. * Distinguish tunnel and non-tunnel rule * Add uninit function for fdir engine * Fix coding style * Change patch organization Beilei Xing (2): net/ice: enable flow director engine net/ice: configure HW FDIR rule Yahui Cao (5): 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 for flow id net/ice: reject duplicate flow for FDIR doc/guides/rel_notes/release_19_11.rst | 1 + drivers/net/ice/Makefile | 1 + drivers/net/ice/ice_ethdev.c | 107 +- drivers/net/ice/ice_ethdev.h | 82 ++ drivers/net/ice/ice_fdir_filter.c | 1551 ++++++++++++++++++++++++ drivers/net/ice/ice_rxtx.c | 446 ++++++- drivers/net/ice/ice_rxtx.h | 9 + drivers/net/ice/meson.build | 3 +- 8 files changed, 2177 insertions(+), 23 deletions(-) create mode 100644 drivers/net/ice/ice_fdir_filter.c -- 2.17.1