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 2A78AA04BA; Thu, 1 Oct 2020 16:10:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6E6C01DB6E; Thu, 1 Oct 2020 16:10:15 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 6A5E81DB69 for ; Thu, 1 Oct 2020 16:10:13 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from michaelba@nvidia.com) with SMTP; 1 Oct 2020 17:10:10 +0300 Received: from nvidia.com (pegasus07.mtr.labs.mlnx [10.210.16.112]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 091EAAEG012743; Thu, 1 Oct 2020 17:10:10 +0300 From: Michael Baum To: dev@dpdk.org Cc: Matan Azrad , Raslan Darawsheh , Viacheslav Ovsiienko Date: Thu, 1 Oct 2020 14:09:11 +0000 Message-Id: <1601561366-1821-1-git-send-email-michaelba@nvidia.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH v1 00/15] mlx5 Tx DevX/Verbs separation 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" The series is an arrangement to multi-OS support by net/mlx5 driver so it comes to ease the code management for OS which supports\doesn't support DevX\Verbs operations. Michael Baum (15): net/mlx5: fix send queue doorbell typo net/mlx5: fix unused variable in Txq creation net/mlx5: mitigate Tx queue reference counters net/mlx5: reorder Tx queue DevX object creation net/mlx5: reorder Tx queue Verbs object creation net/mlx5: reposition the event queue number field net/mlx5: separate Tx queue object creations net/mlx5: share Tx control code net/mlx5: rearrange SQ and CQ creation in DevX module net/mlx5: rearrange QP creation in Verbs module net/mlx5: separate Tx queue object modification net/mlx5: share Tx queue object modification net/mlx5: remove Tx queue object type field net/mlx5: separate Rx queue state modification net/mlx5: remove Rx queue object type field drivers/net/mlx5/linux/mlx5_os.c | 80 ++++ drivers/net/mlx5/linux/mlx5_verbs.c | 296 ++++++++++++- drivers/net/mlx5/linux/mlx5_verbs.h | 3 + drivers/net/mlx5/mlx5.c | 10 + drivers/net/mlx5/mlx5.h | 61 ++- drivers/net/mlx5/mlx5_devx.c | 593 +++++++++++++++++++++++-- drivers/net/mlx5/mlx5_devx.h | 3 + drivers/net/mlx5/mlx5_rxq.c | 4 +- drivers/net/mlx5/mlx5_rxtx.c | 105 +---- drivers/net/mlx5/mlx5_rxtx.h | 45 +- drivers/net/mlx5/mlx5_trigger.c | 40 +- drivers/net/mlx5/mlx5_txpp.c | 28 +- drivers/net/mlx5/mlx5_txq.c | 850 ++---------------------------------- drivers/net/mlx5/mlx5_vlan.c | 5 +- 14 files changed, 1087 insertions(+), 1036 deletions(-) -- 1.8.3.1