From: Raslan Darawsheh <rasland@nvidia.com>
To: Ophir Munk <ophirmu@mellanox.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: Raslan Darawsheh <rasland@mellanox.com>,
Matan Azrad <matan@mellanox.com>,
Ophir Munk <ophirmu@nvidia.com>
Subject: Re: [dpdk-dev] [PATCH v2 00/13] mlx5 PMD multi OS support - part #4
Date: Thu, 27 Aug 2020 09:53:12 +0000 [thread overview]
Message-ID: <DM6PR12MB2748B9B1C13935519A36C1C2CF550@DM6PR12MB2748.namprd12.prod.outlook.com> (raw)
In-Reply-To: <20200825092943.26312-1-ophirmu@mellanox.com>
Hi,
> -----Original Message-----
> From: Ophir Munk <ophirmu@mellanox.com>
> Sent: Tuesday, August 25, 2020 12:30 PM
> To: dev@dpdk.org
> Cc: Raslan Darawsheh <rasland@mellanox.com>; Ophir Munk
> <ophirmu@mellanox.com>; Matan Azrad <matan@mellanox.com>; Ophir
> Munk <ophirmu@nvidia.com>
> Subject: [PATCH v2 00/13] mlx5 PMD multi OS support - part #4
>
> From: Ophir Munk <ophirmu@nvidia.com>
>
> This patch series is part of preparing mlx5 PMD to compile and run under
> multiple OSs. Part #4
>
> v1: initial version
> v2: checkpatch fixes
>
> Ophir Munk (13):
> common/mlx5: replace strsep with strtok_r
> common/mlx5: replace Linux __bexx types with rte
> net/mlx5: rename mlx5 enumeration REG_NONE
> net/mlx5: move mlx5_get_ifname prototype under Linux
> net/mlx5: fix removal of unused inclusion files
> net/mlx5: remove Netlink dependency in shared code
> net/mlx5: fix unused utility macros
> net/mlx5: call meter detach only if DR is supported
> net/mlx5: add ICMP protocol number definition
> net/mlx5: remove more DV dependencies
> net/mlx5: remove ibv_* dependency in Rx/Tx objects
> net/mlx5: separate VLAN strip modification
> linux/mlx5: refactor VLAN
>
> drivers/common/mlx5/linux/mlx5_common_os.h | 111
> +++++++++++++++++++
> drivers/common/mlx5/mlx5_common_pci.c | 14 +--
> drivers/common/mlx5/mlx5_prm.h | 16 +--
> drivers/net/mlx5/Makefile | 1 +
> drivers/net/mlx5/linux/meson.build | 1 +
> drivers/net/mlx5/linux/mlx5_os.c | 18 ++++
> drivers/net/mlx5/linux/mlx5_os.h | 6 ++
> drivers/net/mlx5/linux/mlx5_verbs.c | 28 +++++
> drivers/net/mlx5/linux/mlx5_vlan_os.c | 168
> +++++++++++++++++++++++++++++
> drivers/net/mlx5/mlx5.c | 23 ++--
> drivers/net/mlx5/mlx5.h | 30 +++---
> drivers/net/mlx5/mlx5_devx.c | 48 +++++++++
> drivers/net/mlx5/mlx5_devx.h | 12 +++
> drivers/net/mlx5/mlx5_flow.c | 29 +++--
> drivers/net/mlx5/mlx5_flow_dv.c | 8 +-
> drivers/net/mlx5/mlx5_flow_meter.c | 4 +
> drivers/net/mlx5/mlx5_mac.c | 2 -
> drivers/net/mlx5/mlx5_rxq.c | 18 ++--
> drivers/net/mlx5/mlx5_rxtx.h | 24 ++---
> drivers/net/mlx5/mlx5_trigger.c | 3 +-
> drivers/net/mlx5/mlx5_txpp.c | 38 ++++---
> drivers/net/mlx5/mlx5_txq.c | 19 ++--
> drivers/net/mlx5/mlx5_utils.h | 4 -
> drivers/net/mlx5/mlx5_vlan.c | 161 +--------------------------
> 24 files changed, 527 insertions(+), 259 deletions(-)
> create mode 100644 drivers/net/mlx5/linux/mlx5_vlan_os.c
> create mode 100644 drivers/net/mlx5/mlx5_devx.c
> create mode 100644 drivers/net/mlx5/mlx5_devx.h
>
> --
> 2.8.4
Series applied to next-net-mlx,
Kindest regards,
Raslan Darawsheh
prev parent reply other threads:[~2020-08-27 9:53 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-20 14:50 [dpdk-dev] [PATCH v1 01/13] common/mlx5: replace strsep with strtok_r Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 02/13] common/mlx5: replace linux __bexx types with rte Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 03/13] net/mlx5: rename mlx5 enumeration REG_NONE Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 04/13] net/mlx5: move mlx5_get_ifname prototype under Linux Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 05/13] net/mlx5: fix removal of unused inclusion files Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 06/13] net/mlx5: remove Netlink dependency in shared code Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 07/13] net/mlx5: fix unused utility macros Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 08/13] net/mlx5: call meter detach only if DR is supported Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 09/13] net/mlx5: add ICMP protocol number definition Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 10/13] net/mlx5: remove more DV dependencies Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 11/13] net/mlx5: remove ibv_* dependency in rx/tx objects Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 12/13] net/mlx5: separate vlan strip modification Ophir Munk
2020-08-20 14:50 ` [dpdk-dev] [PATCH v1 13/13] linux/mlx5: refactor VLAN Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 00/13] mlx5 PMD multi OS support - part #4 Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 01/13] common/mlx5: replace strsep with strtok_r Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 02/13] common/mlx5: replace Linux __bexx types with rte Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 03/13] net/mlx5: rename mlx5 enumeration REG_NONE Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 04/13] net/mlx5: move mlx5_get_ifname prototype under Linux Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 05/13] net/mlx5: fix removal of unused inclusion files Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 06/13] net/mlx5: remove Netlink dependency in shared code Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 07/13] net/mlx5: fix unused utility macros Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 08/13] net/mlx5: call meter detach only if DR is supported Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 09/13] net/mlx5: add ICMP protocol number definition Ophir Munk
2020-09-22 11:49 ` Thomas Monjalon
2020-09-22 12:20 ` Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 10/13] net/mlx5: remove more DV dependencies Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 11/13] net/mlx5: remove ibv_* dependency in Rx/Tx objects Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 12/13] net/mlx5: separate VLAN strip modification Ophir Munk
2020-08-25 9:31 ` [dpdk-dev] [PATCH v2 13/13] linux/mlx5: refactor VLAN Ophir Munk
[not found] ` <20200825092943.26312-1-ophirmu@mellanox.com>
2020-08-27 9:53 ` Raslan Darawsheh [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DM6PR12MB2748B9B1C13935519A36C1C2CF550@DM6PR12MB2748.namprd12.prod.outlook.com \
--to=rasland@nvidia.com \
--cc=dev@dpdk.org \
--cc=matan@mellanox.com \
--cc=ophirmu@mellanox.com \
--cc=ophirmu@nvidia.com \
--cc=rasland@mellanox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).