From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4C3E1A0A03; Mon, 18 Jan 2021 15:35:04 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BCAF3140ED4; Mon, 18 Jan 2021 15:35:03 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 24666140EB6 for ; Mon, 18 Jan 2021 15:35:01 +0100 (CET) IronPort-SDR: +a8z+axmu0kpPtC4++YYY1MlMlrFKjm4BU0i9RDb8FhHOXs34MvIRoQDEJVDF1uiV38P5rMV/C iXGJhZlmHzzw== X-IronPort-AV: E=McAfee;i="6000,8403,9867"; a="165900306" X-IronPort-AV: E=Sophos;i="5.79,356,1602572400"; d="scan'208";a="165900306" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jan 2021 06:35:00 -0800 IronPort-SDR: VfoOxVqCRxDF581fLNhuYh8t2qWGFrT3f+lOf/V86qMgEh9GRgInegRYH44N7qZJGnqrCqgnl7 jLzbYG6nMHEQ== X-IronPort-AV: E=Sophos;i="5.79,356,1602572400"; d="scan'208";a="383592329" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.241.24]) ([10.213.241.24]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jan 2021 06:34:58 -0800 To: Shiri Kuzin , dev@dpdk.org Cc: viacheslavo@nvidia.com, adrien.mazarguil@6wind.com, orika@nvidia.com, thomas@monjalon.net, rasland@nvidia.com, andrew.rybchenko@oktetlabs.ru References: <20210114070743.2377-1-shirik@nvidia.com> <20210117102123.19045-1-shirik@nvidia.com> From: Ferruh Yigit Message-ID: Date: Mon, 18 Jan 2021 14:34:56 +0000 MIME-Version: 1.0 In-Reply-To: <20210117102123.19045-1-shirik@nvidia.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v7 0/9] ethdev: introduce GENEVE header TLV option item X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" On 1/17/2021 10:21 AM, Shiri Kuzin wrote: > The Geneve tunneling protocol is designed to allow the user to specify > some data context on the packet. > The GENEVE TLV (Type-Length-Variable) Option is the mean intended to > present the user data. > > In order to support GENEVE TLV Option the new rte_flow item > "rte_flow_item_geneve_opt" is introduced. > The new item contains the values and masks for the following fields: > -option class > -option type > -length > -data > > The usage example: > "flow create 0 ingress pattern eth / ipv4 / udp / geneve vni is 100 / > geneve-opt class is 5 length is 1 type is 0 data is 0x66998800 / > end actions count / drop / end" > > > New item will be added to testpmd to support raw encap/decap action. > > v7: > - rebased code on top of latest next-net. > - fixed typo in testpmd doc. > > v6: > - added testpmd support for GENEVE option length. > - updated setting GENEVE option length value. > > v5: > - added Devx function to def file. > > v4: > - fixed setting option length. > - fixed testpmd calculation of GENEVE option size. > - updated documentation. > > v3: > - updated documentation. > > v2: > - removed pedantic. > > Shiri Kuzin (7): > lib/librte_ethdev: introduce GENEVE header TLV option item > common/mlx5: check GENEVE TLV support in HCA attributes > common/mlx5: create GENEVE TLV option object with DevX > net/mlx5: create GENEVE TLV option management > net/mlx5: add GENEVE TLV option flow validation > net/mlx5: add GENEVE TLV option flow translation > doc: update GENEVE TLV option support > > Viacheslav Ovsiienko (2): > app/testpmd: add GENEVE option item support > app/testpmd: add GENEVE header option length support > Series applied to dpdk-next-net/main, thanks.