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 57CCDA04BA; Wed, 7 Oct 2020 18:05:18 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A9E721BCE5; Wed, 7 Oct 2020 18:05:16 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 757741BCD7 for ; Wed, 7 Oct 2020 18:05:14 +0200 (CEST) IronPort-SDR: RLsK4R89fQAFb+tKRM9dCycp3w4XNmgS2K+P0a4nm8xTuOAKk5/0buBd0PAexGD05OMHXqQJhU QIJKIDqA/vAA== X-IronPort-AV: E=McAfee;i="6000,8403,9767"; a="249711870" X-IronPort-AV: E=Sophos;i="5.77,347,1596524400"; d="scan'208";a="249711870" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Oct 2020 09:05:12 -0700 IronPort-SDR: +5tgP81bK+gVR3Vpf5mv/nz8GX7uKOP56UsVMveMNUWo+tzcoNa2COmB2DY9FfIIbe61HRVdFq w+6MOsBEUi+g== X-IronPort-AV: E=Sophos;i="5.77,347,1596524400"; d="scan'208";a="316273570" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.226.27]) ([10.213.226.27]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Oct 2020 09:05:10 -0700 To: Ophir Munk , dev@dpdk.org, Olivier Matz , Wenzhuo Lu , Jingjing Wu , Bernard Iremonger Cc: Ophir Munk References: <20200918141735.18488-2-ophirmu@nvidia.com> <20201007153055.28820-1-ophirmu@nvidia.com> <20201007153055.28820-4-ophirmu@nvidia.com> From: Ferruh Yigit Message-ID: Date: Wed, 7 Oct 2020 17:05:09 +0100 MIME-Version: 1.0 In-Reply-To: <20201007153055.28820-4-ophirmu@nvidia.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v6 3/3] app/testpmd: tunnel parsing protocols cleanup 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" On 10/7/2020 4:30 PM, Ophir Munk wrote: > From: Ophir Munk > > This is a cleanup commit. > It assembles all tunnel outer updates into one function call to avoid > code duplications. > It defines RTE_VXLAN_GPE_DEFAULT_PORT (4790) in accordance with all > other tunnel protocol definitions. > It replaces all numeric values 4789 in their corresponding definition > RTE_VXLAN_GPE_DEFAULT_PORT. > It updates the 'csum parse-tunnel' documentation. > > Signed-off-by: Ophir Munk > --- > app/test-pmd/cmdline_flow.c | 3 +- > app/test-pmd/csumonly.c | 81 +++++++++-------------------- > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 6 +-- I think this documentation update should be part of 1/3, if there will be a new version can you please move, if not I can do myself while merging. > lib/librte_net/rte_vxlan.h | 1 + > 4 files changed, 31 insertions(+), 60 deletions(-) <...>