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 EFC48A09FF; Tue, 29 Dec 2020 09:58:19 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E70DAC9C2; Tue, 29 Dec 2020 09:53:05 +0100 (CET) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 9A236C9E8 for ; Tue, 29 Dec 2020 09:52:35 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from michaelba@nvidia.com) with SMTP; 29 Dec 2020 10:52:32 +0200 Received: from nvidia.com (pegasus07.mtr.labs.mlnx [10.210.16.112]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 0BT8qWwW022593; Tue, 29 Dec 2020 10:52:32 +0200 From: Michael Baum To: dev@dpdk.org Cc: Matan Azrad , Raslan Darawsheh , Viacheslav Ovsiienko Date: Tue, 29 Dec 2020 08:52:07 +0000 Message-Id: <1609231944-29274-1-git-send-email-michaelba@nvidia.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1608205475-20067-2-git-send-email-michaelba@nvidia.com> References: <1608205475-20067-2-git-send-email-michaelba@nvidia.com> Subject: [dpdk-dev] [PATCH v2 00/17] common/mlx5: share DevX resources creations 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" Due to many instances of creating CQ SQ and RQ on DevX, they move to common. v1: Initial release v2: Bug fix (sending wrong umem id to FW). Michael Baum (17): net/mlx5: fix ASO SQ creation error flow common/mlx5: share DevX CQ creation regex/mlx5: move DevX CQ creation to common vdpa/mlx5: move DevX CQ creation to common net/mlx5: move rearm and clock queue CQ creation to common net/mlx5: move ASO CQ creation to common net/mlx5: move Tx CQ creation to common net/mlx5: move Rx CQ creation to common common/mlx5: enhance page size configuration common/mlx5: share DevX SQ creation regex/mlx5: move DevX SQ creation to common net/mlx5: move rearm and clock queue SQ creation to common net/mlx5: move Tx SQ creation to common net/mlx5: move ASO SQ creation to common common/mlx5: share DevX RQ creation net/mlx5: move Rx RQ creation to common common/mlx5: remove doorbell allocation API drivers/common/mlx5/meson.build | 1 + drivers/common/mlx5/mlx5_common.c | 122 ------ drivers/common/mlx5/mlx5_common.h | 23 -- drivers/common/mlx5/mlx5_common_devx.c | 395 +++++++++++++++++++ drivers/common/mlx5/mlx5_common_devx.h | 56 +++ drivers/common/mlx5/mlx5_devx_cmds.c | 53 ++- drivers/net/mlx5/mlx5.c | 8 - drivers/net/mlx5/mlx5.h | 54 +-- drivers/net/mlx5/mlx5_devx.c | 643 +++++++------------------------ drivers/net/mlx5/mlx5_flow_age.c | 172 +++------ drivers/net/mlx5/mlx5_rxtx.c | 2 +- drivers/net/mlx5/mlx5_rxtx.h | 8 - drivers/net/mlx5/mlx5_txpp.c | 294 ++++---------- drivers/regex/mlx5/mlx5_regex.c | 6 - drivers/regex/mlx5/mlx5_regex.h | 17 +- drivers/regex/mlx5/mlx5_regex_control.c | 242 +++--------- drivers/regex/mlx5/mlx5_regex_fastpath.c | 18 +- drivers/vdpa/mlx5/mlx5_vdpa.h | 10 +- drivers/vdpa/mlx5/mlx5_vdpa_event.c | 81 ++-- drivers/vdpa/mlx5/mlx5_vdpa_virtq.c | 2 +- 20 files changed, 839 insertions(+), 1368 deletions(-) create mode 100644 drivers/common/mlx5/mlx5_common_devx.c create mode 100644 drivers/common/mlx5/mlx5_common_devx.h -- 1.8.3.1