[v3,0/4] add support of Direct Verbs encap and decap actions
Message ID | 1539113137-4914-1-git-send-email-dekelp@mellanox.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2D0951B1D9; Tue, 9 Oct 2018 22:08:44 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 96D1D4CA6 for <dev@dpdk.org>; Tue, 9 Oct 2018 22:08:42 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from dekelp@mellanox.com) with ESMTPS (AES256-SHA encrypted); 9 Oct 2018 21:30:35 +0200 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 w99JPkp9019407; Tue, 9 Oct 2018 22:25:46 +0300 From: Dekel Peled <dekelp@mellanox.com> To: yskoh@mellanox.com, shahafs@mellanox.com Cc: dev@dpdk.org, orika@mellanox.com Date: Tue, 9 Oct 2018 22:25:33 +0300 Message-Id: <1539113137-4914-1-git-send-email-dekelp@mellanox.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1538922308-9516-1-git-send-email-dekelp@mellanox.com> References: <1538922308-9516-1-git-send-email-dekelp@mellanox.com> Subject: [dpdk-dev] [PATCH v3 0/4] add support of Direct Verbs encap and decap actions X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Message
Dekel Peled
Oct. 9, 2018, 7:25 p.m. UTC
This series adds support of encap and decap actions in DV format. It is using the generic encapsulation framework from [1]. Note that encap action is relevant for egress only. Hence this series should be merged on top of [2]. [1] "ethdev: add generic L2/L3 tunnel encapsulation actions" http://mails.dpdk.org/archives/dev/2018-October/114654.html [2] "net/mlx5: allow flow rule with attribute egress" http://mails.dpdk.org/archives/dev/2018-October/114658.html --- V3: * Apply additional code review comments. --- V2: * Rebase on tip. * Apply code review comments. --- Dekel Peled (4): net/mlx5: add flow action functions to glue net/mlx5: add Direct Verbs encap and decap defs net/mlx5: add L2 and L3 encap to Direct Verbs flow net/mlx5: add L2 and L3 decap to Direct Verbs flow drivers/net/mlx5/Makefile | 5 + drivers/net/mlx5/meson.build | 2 + drivers/net/mlx5/mlx5_flow.c | 8 + drivers/net/mlx5/mlx5_flow.h | 6 + drivers/net/mlx5/mlx5_flow_dv.c | 442 +++++++++++++++++++++++++++++++++++++++- drivers/net/mlx5/mlx5_glue.c | 38 ++++ drivers/net/mlx5/mlx5_glue.h | 13 ++ 7 files changed, 509 insertions(+), 5 deletions(-)