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 EEC5FA046B for ; Tue, 25 Jun 2019 16:59:11 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 092331BA85; Tue, 25 Jun 2019 16:58:32 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 160421BA5B for ; Tue, 25 Jun 2019 16:58:28 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E4C1E3078AB5; Tue, 25 Jun 2019 14:58:19 +0000 (UTC) Received: from dhcp-25.97.bos.redhat.com (unknown [10.18.25.84]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8BCF15C231; Tue, 25 Jun 2019 14:58:17 +0000 (UTC) From: Aaron Conole To: Qiming Yang Cc: dev@dpdk.org References: <1559552722-8970-1-git-send-email-qiming.yang@intel.com> <20190625064815.3337-1-qiming.yang@intel.com> Date: Tue, 25 Jun 2019 10:58:16 -0400 In-Reply-To: <20190625064815.3337-1-qiming.yang@intel.com> (Qiming Yang's message of "Tue, 25 Jun 2019 14:48:12 +0800") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.48]); Tue, 25 Jun 2019 14:58:24 +0000 (UTC) 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" Qiming Yang writes: > 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. > > --- > 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. Seems there is still compliation problems - is some dependency not correctly updated? https://travis-ci.com/ovsrobot/dpdk/jobs/210680563 > 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