From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 9D25611A4 for ; Tue, 2 Apr 2019 17:14:55 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from dekelp@mellanox.com) with ESMTPS (AES256-SHA encrypted); 2 Apr 2019 18:14:54 +0300 Received: from mtl-vdi-280.wap.labs.mlnx. (mtl-vdi-280.wap.labs.mlnx [10.128.130.87]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x32FEsQq003363; Tue, 2 Apr 2019 18:14:54 +0300 From: Dekel Peled To: adrien.mazarguil@6wind.com, wenzhuo.lu@intel.com, jingjing.wu@intel.com, bernard.iremonger@intel.com, yskoh@mellanox.com, shahafs@mellanox.com Cc: dev@dpdk.org, orika@mellanox.com, dekelp@mellanox.com Date: Tue, 2 Apr 2019 18:13:18 +0300 Message-Id: <1554218001-62012-1-git-send-email-dekelp@mellanox.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1553177917-43297-1-git-send-email-dekelp@mellanox.com> References: <1553177917-43297-1-git-send-email-dekelp@mellanox.com> Subject: [dpdk-dev] [PATCH v2 0/3] add actions to modify header fields 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: , X-List-Received-Date: Tue, 02 Apr 2019 15:14:56 -0000 Patch [1] implemented set of header modification actions in MLX PMD, based on ethdev and testpmd updates included in [2]. This series implements support of additional header modification actions, in ethdev, testpmd, and MLX5 PMD. Original work by Xiaoyu Min. [1] http://patches.dpdk.org/patch/49310/ [2] http://mails.dpdk.org/archives/dev/2018-August/109672.html --- v2: apply code review comments. --- Dekel Peled (3): ethdev: add actions to modify TCP header fields app/testpmd: add actions to modify TCP header fields net/mlx5: update modify header using Direct Verbs app/test-pmd/cmdline_flow.c | 100 ++++++++++++ doc/guides/prog_guide/rte_flow.rst | 72 +++++++++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 16 ++ drivers/net/mlx5/mlx5_flow.h | 10 +- drivers/net/mlx5/mlx5_flow_dv.c | 239 ++++++++++++++++++++++++++++ drivers/net/mlx5/mlx5_prm.h | 12 ++ lib/librte_ethdev/rte_flow.c | 8 + lib/librte_ethdev/rte_flow.h | 70 ++++++++ 8 files changed, 526 insertions(+), 1 deletion(-) -- 1.8.3.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 74CDAA0679 for ; Tue, 2 Apr 2019 17:14:57 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4E9DF2E81; Tue, 2 Apr 2019 17:14:57 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 9D25611A4 for ; Tue, 2 Apr 2019 17:14:55 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from dekelp@mellanox.com) with ESMTPS (AES256-SHA encrypted); 2 Apr 2019 18:14:54 +0300 Received: from mtl-vdi-280.wap.labs.mlnx. (mtl-vdi-280.wap.labs.mlnx [10.128.130.87]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x32FEsQq003363; Tue, 2 Apr 2019 18:14:54 +0300 From: Dekel Peled To: adrien.mazarguil@6wind.com, wenzhuo.lu@intel.com, jingjing.wu@intel.com, bernard.iremonger@intel.com, yskoh@mellanox.com, shahafs@mellanox.com Cc: dev@dpdk.org, orika@mellanox.com, dekelp@mellanox.com Date: Tue, 2 Apr 2019 18:13:18 +0300 Message-Id: <1554218001-62012-1-git-send-email-dekelp@mellanox.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1553177917-43297-1-git-send-email-dekelp@mellanox.com> References: <1553177917-43297-1-git-send-email-dekelp@mellanox.com> Subject: [dpdk-dev] [PATCH v2 0/3] add actions to modify header fields 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" Content-Type: text/plain; charset="UTF-8" Message-ID: <20190402151318.XiOuANHzlS44Yh3UYlCpCQnQ2poVFFM0QQLv8dgQjD0@z> Patch [1] implemented set of header modification actions in MLX PMD, based on ethdev and testpmd updates included in [2]. This series implements support of additional header modification actions, in ethdev, testpmd, and MLX5 PMD. Original work by Xiaoyu Min. [1] http://patches.dpdk.org/patch/49310/ [2] http://mails.dpdk.org/archives/dev/2018-August/109672.html --- v2: apply code review comments. --- Dekel Peled (3): ethdev: add actions to modify TCP header fields app/testpmd: add actions to modify TCP header fields net/mlx5: update modify header using Direct Verbs app/test-pmd/cmdline_flow.c | 100 ++++++++++++ doc/guides/prog_guide/rte_flow.rst | 72 +++++++++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 16 ++ drivers/net/mlx5/mlx5_flow.h | 10 +- drivers/net/mlx5/mlx5_flow_dv.c | 239 ++++++++++++++++++++++++++++ drivers/net/mlx5/mlx5_prm.h | 12 ++ lib/librte_ethdev/rte_flow.c | 8 + lib/librte_ethdev/rte_flow.h | 70 ++++++++ 8 files changed, 526 insertions(+), 1 deletion(-) -- 1.8.3.1