From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id E1BD3A046B for ; Wed, 26 Jun 2019 11:11:04 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0B2FAF04; Wed, 26 Jun 2019 11:11:04 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id C3AF5A3 for ; Wed, 26 Jun 2019 11:11:02 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Jun 2019 02:11:01 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,419,1557212400"; d="scan'208";a="183088253" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.110.186]) by fmsmga001.fm.intel.com with ESMTP; 26 Jun 2019 02:11:00 -0700 Date: Wed, 26 Jun 2019 23:52:40 +0800 From: Ye Xiaolong To: Qiming Yang Cc: dev@dpdk.org Message-ID: <20190626155240.GC99403@intel.com> References: <1559552722-8970-1-git-send-email-qiming.yang@intel.com> <20190625064815.3337-1-qiming.yang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190625064815.3337-1-qiming.yang@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v7 0/3] Enable rte_flow API in ice 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" Hi, Qiming On 06/25, Qiming Yang wrote: >This patch set enables the backend of rte_flow, and the generic >filter related functions in ice driver. Supported flows include >ipv4, tcpv4, udpv4, ipv6, tcpv6, udpv6, tunnel, etc. This patch >set depends on shared code update. Please also add doc and release notes for this patchset. Thanks, Xiaolong > >--- >v2 changes: > - added UDP tunnel port support. > - fixed compile issue. > - added document update. >v3 changes: > - removed redundancy parser. > - added License. > - added VXLAN and NVGRE item support. >v4 changes: > - fixed some typos. >v5 changes: > - fixed checkpatch issues. >v6 changes: > - fixed one uninitialize issue. >v7 changes: > - fixed queue action validation. > >Qiming Yang (2): > net/ice: add generic flow API > net/ice: add UDP tunnel port support > >wei zhao (1): > net/ice: enable switch filter > > drivers/net/ice/Makefile | 2 + > drivers/net/ice/ice_ethdev.c | 116 ++++++ > drivers/net/ice/ice_ethdev.h | 12 + > drivers/net/ice/ice_generic_flow.c | 696 ++++++++++++++++++++++++++++++++++++ > drivers/net/ice/ice_generic_flow.h | 614 +++++++++++++++++++++++++++++++ > drivers/net/ice/ice_switch_filter.c | 512 ++++++++++++++++++++++++++ > drivers/net/ice/ice_switch_filter.h | 24 ++ > drivers/net/ice/meson.build | 4 +- > 8 files changed, 1979 insertions(+), 1 deletion(-) > create mode 100644 drivers/net/ice/ice_generic_flow.c > create mode 100644 drivers/net/ice/ice_generic_flow.h > create mode 100644 drivers/net/ice/ice_switch_filter.c > create mode 100644 drivers/net/ice/ice_switch_filter.h > >-- >2.9.5 >