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 D021DA046B for ; Wed, 26 Jun 2019 03:52:32 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 398AF4CAF; Wed, 26 Jun 2019 03:52:32 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 342FA4C8B for ; Wed, 26 Jun 2019 03:52:30 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Jun 2019 18:52:29 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,418,1557212400"; d="scan'208";a="162090406" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by fmsmga008.fm.intel.com with ESMTP; 25 Jun 2019 18:52:29 -0700 Received: from fmsmsx114.amr.corp.intel.com (10.18.116.8) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.439.0; Tue, 25 Jun 2019 18:52:29 -0700 Received: from shsmsx153.ccr.corp.intel.com (10.239.6.53) by FMSMSX114.amr.corp.intel.com (10.18.116.8) with Microsoft SMTP Server (TLS) id 14.3.439.0; Tue, 25 Jun 2019 18:52:28 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.87]) by SHSMSX153.ccr.corp.intel.com ([169.254.12.76]) with mapi id 14.03.0439.000; Wed, 26 Jun 2019 09:52:26 +0800 From: "Yang, Qiming" To: Aaron Conole CC: "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v7 0/3] Enable rte_flow API in ice driver Thread-Index: AQHVK2aLULXClLGz0UygCNvSZiN1+aatK1zg Date: Wed, 26 Jun 2019 01:52:26 +0000 Message-ID: References: <1559552722-8970-1-git-send-email-qiming.yang@intel.com> <20190625064815.3337-1-qiming.yang@intel.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 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, It seems these error induced by lack of some base code which are merged in = dpdk-next-net-intel branch. It's not this patch set's issue. Qiming -----Original Message----- From: Aaron Conole [mailto:aconole@redhat.com]=20 Sent: Tuesday, June 25, 2019 10:58 PM To: Yang, Qiming Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v7 0/3] Enable rte_flow API in ice driver Qiming Yang writes: > This patch set enables the backend of rte_flow, and the generic filter=20 > related functions in ice driver. Supported flows include ipv4, tcpv4,=20 > udpv4, ipv6, tcpv6, udpv6, tunnel, etc. This patch set depends on=20 > 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 correctl= y 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=20 > ++++++++++++++++++++++++++++++++++++ > drivers/net/ice/ice_generic_flow.h | 614=20 > +++++++++++++++++++++++++++++++ drivers/net/ice/ice_switch_filter.c |=20 > 512 ++++++++++++++++++++++++++ drivers/net/ice/ice_switch_filter.h | 24= ++ > drivers/net/ice/meson.build | 4 +- > 8 files changed, 1979 insertions(+), 1 deletion(-) create mode=20 > 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