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=-6.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, UNPARSEABLE_RELAY,URIBL_BLOCKED,USER_AGENT_GIT autolearn=no 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 18149C41604 for ; Wed, 7 Oct 2020 15:31:46 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 7863E21582 for ; Wed, 7 Oct 2020 15:31:45 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7863E21582 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=nvidia.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 968D31BD2A; Wed, 7 Oct 2020 17:31:10 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 969B51BCFC for ; Wed, 7 Oct 2020 17:31:04 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from ophirmu@nvidia.com) with SMTP; 7 Oct 2020 18:30:58 +0300 Received: from nvidia.com (pegasus05.mtr.labs.mlnx [10.210.16.100]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 097FUwBn008453; Wed, 7 Oct 2020 18:30:58 +0300 From: Ophir Munk To: dev@dpdk.org, Ferruh Yigit , Olivier Matz , Wenzhuo Lu , Jingjing Wu , Bernard Iremonger Cc: Ophir Munk Date: Wed, 7 Oct 2020 15:30:52 +0000 Message-Id: <20201007153055.28820-1-ophirmu@nvidia.com> X-Mailer: git-send-email 2.8.4 In-Reply-To: <20200918141735.18488-2-ophirmu@nvidia.com> References: <20200918141735.18488-2-ophirmu@nvidia.com> Subject: [dpdk-dev] [PATCH v6 0/3] Add GENEVE protocol parsing to testpmd 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" v1: Initial version v2: Rebased + Minor update in protocol options field: char opts[0] ===> uint8_t opts[] v3: Rebase document "geneve-port=N" parameter v4: Mispelling corrections v5: Rebase + Updates following review http://patches.dpdk.org/patch/77734/ v6: Rebase + Updates following reviews: more cleanup and added documentation. Ophir Munk (3): app/testpmd: add GENEVE parsing app/testpmd: enable configuring GENEVE port app/testpmd: tunnel parsing protocols cleanup app/test-pmd/cmdline_flow.c | 3 +- app/test-pmd/csumonly.c | 129 ++++++++++++++++++---------- app/test-pmd/parameters.c | 14 ++- app/test-pmd/testpmd.h | 1 + doc/guides/testpmd_app_ug/run_app.rst | 5 ++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 6 +- lib/librte_net/meson.build | 3 +- lib/librte_net/rte_geneve.h | 66 ++++++++++++++ lib/librte_net/rte_vxlan.h | 1 + 9 files changed, 175 insertions(+), 53 deletions(-) create mode 100644 lib/librte_net/rte_geneve.h -- 2.8.4