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 27E14A0562; Fri, 3 Apr 2020 08:03:41 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9010B1BFC4; Fri, 3 Apr 2020 08:03:40 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 5650E1BFA6 for ; Fri, 3 Apr 2020 08:03:39 +0200 (CEST) IronPort-SDR: 1rG/rYzWJ0Y2Grvxk2xEDehrJwQA0drDxUukxXFwtzjeur9v/ZSBh+BJFeJ9a8oJ8e3BMjTJs9 tf8+giyJ60Vw== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Apr 2020 23:03:38 -0700 IronPort-SDR: mU/y6kN3DF6ret3S8Z5n4XAnhxJZnjGPIYmqCEYu9tE0CuRR9Nrbw0EqPLaUMYn1VWwfIYvYoq eDL/F2vzTM9w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,338,1580803200"; d="scan'208";a="242725138" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by fmsmga008.fm.intel.com with ESMTP; 02 Apr 2020 23:03:38 -0700 Received: from shsmsx153.ccr.corp.intel.com (10.239.6.53) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 2 Apr 2020 23:03:38 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.146]) by SHSMSX153.ccr.corp.intel.com ([169.254.12.89]) with mapi id 14.03.0439.000; Fri, 3 Apr 2020 14:03:35 +0800 From: "Zhang, Qi Z" To: "Yang, Qiming" , "dev@dpdk.org" Thread-Topic: [PATCH v3 0/2] add generic filter support for iavf Thread-Index: AQHWCX0k7DAJwTY4p0+epl0gDfxr3ahm6CYg Date: Fri, 3 Apr 2020 06:03:34 +0000 Message-ID: <039ED4275CED7440929022BC67E70611547F295E@SHSMSX103.ccr.corp.intel.com> References: <20200317081745.29450-1-qiming.yang@intel.com> <20200403054242.30391-1-qiming.yang@intel.com> In-Reply-To: <20200403054242.30391-1-qiming.yang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action 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 v3 0/2] add generic filter support for iavf 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" > -----Original Message----- > From: Yang, Qiming > Sent: Friday, April 3, 2020 1:43 PM > To: dev@dpdk.org > Cc: Zhang, Qi Z ; Yang, Qiming > Subject: [PATCH v3 0/2] add generic filter support for iavf >=20 > This patch set added generic flow APIs and supported patterns includes: > /* L2 */ > /* ARP */ > /* IPv4 */ > /* IPv6 */ > /* GTPU */ > /* ESP */ > /* AH */ > /* L2TPV3 */ > /* PFCP */ >=20 > --- > v2 changes: > - fixed document error. > - fixed multiple thread not safe issue. > - use RTE_ASSERT to replace runtime check for engine->create =3D=3D NULL= . > v3 changes: > - add feature enable flag in iavf.ini >=20 > Qiming Yang (2): > net/iavf: support generic flow > net/iavf: support more patterns >=20 > doc/guides/nics/features/iavf.ini | 1 + > doc/guides/rel_notes/release_20_05.rst | 5 + > drivers/net/iavf/Makefile | 1 + > drivers/net/iavf/iavf.h | 10 + > drivers/net/iavf/iavf_ethdev.c | 46 ++ > drivers/net/iavf/iavf_generic_flow.c | 1025 > ++++++++++++++++++++++++++++++++ > drivers/net/iavf/iavf_generic_flow.h | 318 ++++++++++ > drivers/net/iavf/meson.build | 1 + > 8 files changed, 1407 insertions(+) > create mode 100644 drivers/net/iavf/iavf_generic_flow.c > create mode 100644 drivers/net/iavf/iavf_generic_flow.h >=20 > -- > 2.9.5 Acked-by: Qi Zhang