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 51C7EA2EEB for ; Mon, 9 Sep 2019 17:56:55 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6FFF81ED02; Mon, 9 Sep 2019 17:56:54 +0200 (CEST) Received: from git-send-mailer.rdmz.labs.mlnx (unknown [37.142.13.130]) by dpdk.org (Postfix) with ESMTP id 9738B1ED4D for ; Mon, 9 Sep 2019 17:56:52 +0200 (CEST) From: Moti Haimovsky To: viacheslavo@mellanox.com, rasland@mellanox.com Cc: dev@dpdk.org Date: Mon, 9 Sep 2019 18:56:42 +0300 Message-Id: X-Mailer: git-send-email 1.7.1 In-Reply-To: References: Subject: [dpdk-dev] [PATCH v5 0/7] net/mlx5: support for flow action on VLAN header 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" VLAN actions support is implemented in librte_ethdev, and in test-pmd application, based on [1] Generic flow API. These actions conform to the VLAN actions defined in [2] the OpenFlow Switch Specification. rte_flow defines the following VLAN actions: 1. OF_POP_VLAN Pop the outer-most VLAN header from the packet. 2. OF_PUSH_VLAN Push a new VLAN header onto the packet. 3. OF_SET_VLAN_VID Sets the ID of the outermost VLAN tag. 4. OF_SET_VLAN_PCP Sets the 3-bit priority field of the outermost VLAN tag. This series of patches adds support for those VLAN actions to the mlx5 PMD using the Direct Verbs interface. v2: - Code rebase on latest commits. v3: - mlx5 documentation update. v4: - Update the release notes with new the new features. - Minor bug fixes. v5: - Rebase on top of latest commits. - Minor bug fix in vlan push action. - Bug fix in the format of the release notes. Moti Haimovsky (7): net/mlx5: support for an action search in a list net/mlx5: add VLAN push/pop DR commands to glue net/mlx5: support pop flow action on VLAN header net/mlx5: support push flow action on VLAN header net/mlx5: support modify VLAN priority on VLAN hdr net/mlx5: supp modify VLAN ID on new VLAN header net/mlx5: supp modify VLAN ID on existing VLAN hdr doc/guides/nics/mlx5.rst | 34 ++- doc/guides/rel_notes/release_19_11.rst | 9 + drivers/net/mlx5/Makefile | 5 + drivers/net/mlx5/meson.build | 2 + drivers/net/mlx5/mlx5.c | 9 + drivers/net/mlx5/mlx5.h | 4 + drivers/net/mlx5/mlx5_flow.c | 23 ++ drivers/net/mlx5/mlx5_flow.h | 27 +- drivers/net/mlx5/mlx5_flow_dv.c | 538 +++++++++++++++++++++++++++++++++ drivers/net/mlx5/mlx5_glue.c | 29 ++ drivers/net/mlx5/mlx5_glue.h | 6 + drivers/net/mlx5/mlx5_prm.h | 1 + 12 files changed, 677 insertions(+), 10 deletions(-) -- 1.8.3.1