From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 19D7DC433DB for ; Mon, 18 Jan 2021 14:29:54 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 7155F22B4E for ; Mon, 18 Jan 2021 14:29:53 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7155F22B4E Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 55B5C140DE7; Mon, 18 Jan 2021 15:29:52 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id A3937140D50 for ; Mon, 18 Jan 2021 15:29:48 +0100 (CET) IronPort-SDR: g53yPq9KoTpkYQTjIJ/S2y6nEhQEtASaYAoMty6gekx/YPYGvNFV9hMW3D51SkC+JyNKx6DoJs 8MybhWhrAHDg== X-IronPort-AV: E=McAfee;i="6000,8403,9867"; a="176239092" X-IronPort-AV: E=Sophos;i="5.79,356,1602572400"; d="scan'208";a="176239092" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jan 2021 06:29:46 -0800 IronPort-SDR: mg5o4EtJrnItypleM1/Jr5NZGJZdUnjT+ClWn9w9sLgBH83+t/uU86gifmVAoCPTgkKUgK+GEQ jipGWk1HhB8g== X-IronPort-AV: E=Sophos;i="5.79,356,1602572400"; d="scan'208";a="383590996" 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:29:44 -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> <20210117102123.19045-2-shirik@nvidia.com> From: Ferruh Yigit Message-ID: Date: Mon, 18 Jan 2021 14:29:42 +0000 MIME-Version: 1.0 In-Reply-To: <20210117102123.19045-2-shirik@nvidia.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v7 1/9] lib/librte_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 added. > The new item contains the values and masks for the > following fields: > -option class > -option type > -length > -data > > New item will be added to testpmd to support match and > raw encap/decap actions. > > Signed-off-by: Shiri Kuzin > Acked-by: Ori Kam Reviewed-by: Ferruh Yigit