DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ophir Munk <ophirmu@mellanox.com>
To: dev@dpdk.org
Cc: Raslan Darawsheh <rasland@mellanox.com>,
	Ophir Munk <ophirmu@mellanox.com>,
	Matan Azrad <matan@mellanox.com>
Subject: [dpdk-dev] [PATCH v3 0/8] mlx5 PMD multi OS support - part #3
Date: Sun, 19 Jul 2020 10:18:08 +0000	[thread overview]
Message-ID: <20200719101816.16406-1-ophirmu@mellanox.com> (raw)
In-Reply-To: <20200719071112.8540-9-ophirmu@mellanox.com>


This patch series is part of preparing mlx5 PMD to compile
and run under multiple OSs. Part #3

v1: Initial version
v2: Version rebased
v3: Fix coverity complain: BRANCH_PAST_INITIALIZATION

Ophir Munk (8):
  net/mlx5: move flow prio discovery and adjust under Verbs
  net/mlx5: replace Linux specific calls with rte API
  net/mlx5: refactor Linux MAC operations
  linux/mlx5: add setters for promiscuous and all-multi
  net/mlx5: eliminate dependency on Linux in shared header
  net/mlx5: header file cleanup
  net/mlx5: refactor multi process communication
  mlx5: remove inclusion of Verbs header files

 drivers/common/mlx5/linux/mlx5_common_os.h    |   7 +-
 drivers/common/mlx5/linux/mlx5_common_verbs.c |  15 -
 drivers/common/mlx5/mlx5_common_mp.h          |  11 +-
 drivers/common/mlx5/mlx5_common_mr.h          |  11 +-
 drivers/common/mlx5/mlx5_devx_cmds.c          |   9 +-
 drivers/common/mlx5/mlx5_prm.h                |  15 +-
 drivers/net/mlx5/Makefile                     |   2 +-
 drivers/net/mlx5/linux/meson.build            |   1 +
 drivers/net/mlx5/linux/mlx5_ethdev_os.c       | 416 +++++++++++++++++++---
 drivers/net/mlx5/linux/mlx5_mp_os.c           | 212 +++++++++++
 drivers/net/mlx5/linux/mlx5_os.c              | 490 +++++++++++---------------
 drivers/net/mlx5/linux/mlx5_verbs.c           |  15 -
 drivers/net/mlx5/meson.build                  |   1 -
 drivers/net/mlx5/mlx5.c                       | 124 +------
 drivers/net/mlx5/mlx5.h                       |  66 ++--
 drivers/net/mlx5/mlx5_flow.c                  | 121 -------
 drivers/net/mlx5/mlx5_flow.h                  |  12 +-
 drivers/net/mlx5/mlx5_flow_dv.c               |  20 +-
 drivers/net/mlx5/mlx5_flow_verbs.c            | 122 ++++++-
 drivers/net/mlx5/mlx5_mac.c                   |  59 +---
 drivers/net/mlx5/mlx5_mp.c                    | 212 -----------
 drivers/net/mlx5/mlx5_mr.c                    |   9 -
 drivers/net/mlx5/mlx5_mr.h                    |  11 -
 drivers/net/mlx5/mlx5_rss.c                   |  10 -
 drivers/net/mlx5/mlx5_rxmode.c                |  23 +-
 drivers/net/mlx5/mlx5_rxq.c                   |  20 +-
 drivers/net/mlx5/mlx5_rxtx.c                  |  12 +-
 drivers/net/mlx5/mlx5_rxtx.h                  |  11 -
 drivers/net/mlx5/mlx5_rxtx_vec.c              |  12 +-
 drivers/net/mlx5/mlx5_trigger.c               |   4 +-
 drivers/net/mlx5/mlx5_txpp.c                  |  15 +-
 drivers/net/mlx5/mlx5_txq.c                   |  57 +--
 drivers/net/mlx5/mlx5_vlan.c                  |  17 -
 33 files changed, 1030 insertions(+), 1112 deletions(-)
 create mode 100644 drivers/net/mlx5/linux/mlx5_mp_os.c
 delete mode 100644 drivers/net/mlx5/mlx5_mp.c

-- 
2.8.4


  reply	other threads:[~2020-07-19 10:18 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-14 14:20 [dpdk-dev] [PATCH v1 " Ophir Munk
2020-07-14 14:20 ` [dpdk-dev] [PATCH v1 1/8] net/mlx5: move flow prio discovery and adjust under verbs Ophir Munk
2020-07-14 14:20 ` [dpdk-dev] [PATCH v1 2/8] net/mlx5: replace Linux specific calls with rte API Ophir Munk
2020-07-14 14:20 ` [dpdk-dev] [PATCH v1 3/8] net/mlx5: refactor Linux MAC operations Ophir Munk
2020-07-14 14:20 ` [dpdk-dev] [PATCH v1 4/8] linux/mlx5: add setters for promiscuous and all-multi Ophir Munk
2020-07-14 14:20 ` [dpdk-dev] [PATCH v1 5/8] net/mlx5: eliminate dependency on Linux in shared header Ophir Munk
2020-07-14 14:21 ` [dpdk-dev] [PATCH v1 6/8] net/mlx5: header file cleanup Ophir Munk
2020-07-14 14:21 ` [dpdk-dev] [PATCH v1 7/8] net/mlx5: refactor multi process communication Ophir Munk
2020-07-14 14:21 ` [dpdk-dev] [PATCH v1 8/8] mlx5: remove inclusion of verbs header files Ophir Munk
2020-07-19  7:11   ` [dpdk-dev] [PATCH v2 0/8] mlx5 PMD multi OS support - part #3 Ophir Munk
2020-07-19  7:11     ` [dpdk-dev] [PATCH v2 1/8] net/mlx5: move flow prio discovery and adjust under Verbs Ophir Munk
2020-07-19  7:11     ` [dpdk-dev] [PATCH v2 2/8] net/mlx5: replace Linux specific calls with rte API Ophir Munk
2020-07-19  7:11     ` [dpdk-dev] [PATCH v2 3/8] net/mlx5: refactor Linux MAC operations Ophir Munk
2020-07-19  7:11     ` [dpdk-dev] [PATCH v2 4/8] linux/mlx5: add setters for promiscuous and all-multi Ophir Munk
2020-07-19  7:11     ` [dpdk-dev] [PATCH v2 5/8] net/mlx5: eliminate dependency on Linux in shared header Ophir Munk
2020-07-19  7:11     ` [dpdk-dev] [PATCH v2 6/8] net/mlx5: header file cleanup Ophir Munk
2020-07-19  7:11     ` [dpdk-dev] [PATCH v2 7/8] net/mlx5: refactor multi process communication Ophir Munk
2020-07-19  7:11     ` [dpdk-dev] [PATCH v2 8/8] mlx5: remove inclusion of Verbs header files Ophir Munk
2020-07-19 10:18       ` Ophir Munk [this message]
2020-07-19 10:18         ` [dpdk-dev] [PATCH v3 1/8] net/mlx5: move flow prio discovery and adjust under Verbs Ophir Munk
2020-07-19 10:18         ` [dpdk-dev] [PATCH v3 2/8] net/mlx5: replace Linux specific calls with rte API Ophir Munk
2020-07-19 10:18         ` [dpdk-dev] [PATCH v3 3/8] net/mlx5: refactor Linux MAC operations Ophir Munk
2020-07-19 10:18         ` [dpdk-dev] [PATCH v3 4/8] linux/mlx5: add setters for promiscuous and all-multi Ophir Munk
2020-07-19 10:18         ` [dpdk-dev] [PATCH v3 5/8] net/mlx5: eliminate dependency on Linux in shared header Ophir Munk
2020-07-19 10:18         ` [dpdk-dev] [PATCH v3 6/8] net/mlx5: header file cleanup Ophir Munk
2020-07-19 10:18         ` [dpdk-dev] [PATCH v3 7/8] net/mlx5: refactor multi process communication Ophir Munk
2020-07-19 10:18         ` [dpdk-dev] [PATCH v3 8/8] mlx5: remove inclusion of Verbs header files Ophir Munk
2020-07-19 14:56         ` [dpdk-dev] [PATCH v3 0/8] mlx5 PMD multi OS support - part #3 Raslan Darawsheh

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=20200719101816.16406-1-ophirmu@mellanox.com \
    --to=ophirmu@mellanox.com \
    --cc=dev@dpdk.org \
    --cc=matan@mellanox.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).