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 3A01CA0C51; Tue, 13 Jul 2021 15:09:52 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AE15F410DF; Tue, 13 Jul 2021 15:09:51 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 4084F406FF for ; Tue, 13 Jul 2021 15:09:50 +0200 (CEST) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id CFCAF7F529; Tue, 13 Jul 2021 16:09:49 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru CFCAF7F529 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1626181789; bh=V6/M094slICcCcTQblnxr13cnBo8GZD17VYkS64bDhY=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=jrU0xIRE0Ta2+id1NWNVQvWrp8wXfEqsmAXWU6RxWrRJXGaOnNcqgoc+pTHHVemwV 0IaUfliQdoVlbJCL+hxq2zQL4Aj1gVvzubwpRWa1aszghrbWniD82RcauC3alKFyBp I60grYWh9A0l8f2/Occ8K9zFOV4n2EL7FhaJpvcA= To: Rongwei Liu , matan@nvidia.com, viacheslavo@nvidia.com, orika@nvidia.com, thomas@monjalon.net Cc: dev@dpdk.org, rasland@nvidia.com References: <20210713120920.131354-1-rongweil@nvidia.com> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: Date: Tue, 13 Jul 2021 16:09:49 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 MIME-Version: 1.0 In-Reply-To: <20210713120920.131354-1-rongweil@nvidia.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v7 0/2] support VXLAN header the last 8-bits matching 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 7/13/21 3:09 PM, Rongwei Liu wrote: > This update adds support for VXLAN the last 8-bits reserved > field matching when creating sw steering rules. > > Rongwei Liu (2): > net/mlx5: support matching on the reserved field of VXLAN > app/testpmd: support matching the reserved filed for VXLAN > > app/test-pmd/cmdline_flow.c | 10 ++ > app/test-pmd/util.c | 5 +- > doc/guides/nics/mlx5.rst | 11 +- > doc/guides/rel_notes/release_21_08.rst | 6 + > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 1 + > drivers/common/mlx5/mlx5_devx_cmds.c | 3 + > drivers/common/mlx5/mlx5_devx_cmds.h | 6 + > drivers/common/mlx5/mlx5_prm.h | 41 ++++- > drivers/net/mlx5/linux/mlx5_os.c | 77 ++++++++++ > drivers/net/mlx5/mlx5.h | 2 + > drivers/net/mlx5/mlx5_flow.c | 26 +++- > drivers/net/mlx5/mlx5_flow.h | 4 +- > drivers/net/mlx5/mlx5_flow_dv.c | 160 ++++++++++++++------ > drivers/net/mlx5/mlx5_flow_verbs.c | 3 +- > drivers/vdpa/mlx5/mlx5_vdpa_steer.c | 6 +- > 15 files changed, 294 insertions(+), 67 deletions(-) > With release notes appropriately squashed Applied, thanks.