From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mordechay Haimovsky Subject: [PATCH v1 0/3] support flow counters using devx Date: Tue, 25 Dec 2018 14:38:41 +0000 Message-ID: <1545748697-3385-1-git-send-email-motih@mellanox.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Cc: Mordechay Haimovsky To: "dev@dpdk.org" Return-path: Received: from EUR02-VE1-obe.outbound.protection.outlook.com (mail-eopbgr20050.outbound.protection.outlook.com [40.107.2.50]) by dpdk.org (Postfix) with ESMTP id 8E5451B200 for ; Tue, 25 Dec 2018 15:38:43 +0100 (CET) Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This series of commits add support for creating, allocating, querying and destroying flow counters in mlx5 PMD using the devx interface. Moti Haimovsky (3): net/mlx5: modify shared counter allocation logic net/mlx5: add devx functions to glue net/mlx5: support flow counters using devx drivers/net/mlx5/Makefile | 11 ++ drivers/net/mlx5/meson.build | 7 ++ drivers/net/mlx5/mlx5.c | 17 ++- drivers/net/mlx5/mlx5.h | 1 + drivers/net/mlx5/mlx5_devx_cmds.c | 117 +++++++++++++++++++ drivers/net/mlx5/mlx5_flow.h | 12 +- drivers/net/mlx5/mlx5_flow_dv.c | 232 +++++++++++++++++++++++++++++++++= ++-- drivers/net/mlx5/mlx5_flow_verbs.c | 14 +-- drivers/net/mlx5/mlx5_glue.c | 100 ++++++++++++++++ drivers/net/mlx5/mlx5_glue.h | 19 +++ drivers/net/mlx5/mlx5_prm.h | 86 ++++++++++++++ 11 files changed, 593 insertions(+), 23 deletions(-) create mode 100644 drivers/net/mlx5/mlx5_devx_cmds.c --=20 1.8.3.1