DPDK patches and discussions
 help / color / mirror / Atom feed
From: Yongseok Koh <yskoh@mellanox.com>
To: Thomas Monjalon <thomas@monjalon.net>,
	Shahaf Shuler <shahafs@mellanox.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>, Yongseok Koh <yskoh@mellanox.com>
Subject: [dpdk-dev] [PATCH v2 00/11] net/mlx5: add Direct Verbs flow driver support
Date: Mon, 24 Sep 2018 19:50:04 +0000	[thread overview]
Message-ID: <20180924194951.18650-1-yskoh@mellanox.com> (raw)
In-Reply-To: <20180919064814.21645-1-yskoh@mellanox.com>

RFC:
	https://mails.dpdk.org/archives/dev/2018-August/109950.html

v2:
* make changes for the newly introduced meson build.

Ori Kam (11):
  net/mlx5: split flow validation to dedicated function
  net/mlx5: add flow prepare function
  net/mlx5: add flow translate function
  net/mlx5: add support for multiple flow drivers
  net/mlx5: add Direct Verbs validation function
  net/mlx5: add Direct Verbs prepare function
  net/mlx5: add Direct Verbs translate items
  net/mlx5: add Direct Verbs translate actions
  net/mlx5: add Direct Verbs driver to glue
  net/mlx5: add Direct Verbs final functions
  net/mlx5: add runtime parameter to enable Direct Verbs

 doc/guides/nics/mlx5.rst           |    7 +
 drivers/net/mlx5/Makefile          |    9 +-
 drivers/net/mlx5/meson.build       |    6 +-
 drivers/net/mlx5/mlx5.c            |    8 +
 drivers/net/mlx5/mlx5.h            |    2 +
 drivers/net/mlx5/mlx5_flow.c       | 3271 +++++++++++-------------------------
 drivers/net/mlx5/mlx5_flow.h       |  326 ++++
 drivers/net/mlx5/mlx5_flow_dv.c    | 1373 +++++++++++++++
 drivers/net/mlx5/mlx5_flow_verbs.c | 1652 ++++++++++++++++++
 drivers/net/mlx5/mlx5_glue.c       |   45 +
 drivers/net/mlx5/mlx5_glue.h       |   15 +
 drivers/net/mlx5/mlx5_prm.h        |  220 +++
 drivers/net/mlx5/mlx5_rxtx.h       |    7 +
 13 files changed, 4620 insertions(+), 2321 deletions(-)
 create mode 100644 drivers/net/mlx5/mlx5_flow.h
 create mode 100644 drivers/net/mlx5/mlx5_flow_dv.c
 create mode 100644 drivers/net/mlx5/mlx5_flow_verbs.c

-- 
2.11.0

  parent reply	other threads:[~2018-09-24 19:50 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-19  6:48 [dpdk-dev] [PATCH " Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 01/11] net/mlx5: split flow validation to dedicated function Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 02/11] net/mlx5: add flow prepare function Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 03/11] net/mlx5: add flow translate function Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 04/11] net/mlx5: add support for multiple flow drivers Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 05/11] net/mlx5: add Direct Verbs validation function Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 06/11] net/mlx5: add Direct Verbs prepare function Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 07/11] net/mlx5: add Direct Verbs translate items Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 08/11] net/mlx5: add Direct Verbs translate actions Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 09/11] net/mlx5: add Direct Verbs driver to glue Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 10/11] net/mlx5: add Direct Verbs final functions Yongseok Koh
2018-09-19  6:48 ` [dpdk-dev] [PATCH 11/11] net/mlx5: add runtime parameter to enable Direct Verbs Yongseok Koh
2018-09-24 19:50 ` Yongseok Koh [this message]
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 01/11] net/mlx5: split flow validation to dedicated function Yongseok Koh
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 02/11] net/mlx5: add flow prepare function Yongseok Koh
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 03/11] net/mlx5: add flow translate function Yongseok Koh
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 04/11] net/mlx5: add support for multiple flow drivers Yongseok Koh
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 05/11] net/mlx5: add Direct Verbs validation function Yongseok Koh
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 06/11] net/mlx5: add Direct Verbs prepare function Yongseok Koh
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 07/11] net/mlx5: add Direct Verbs translate items Yongseok Koh
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 08/11] net/mlx5: add Direct Verbs translate actions Yongseok Koh
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 09/11] net/mlx5: add Direct Verbs driver to glue Yongseok Koh
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 10/11] net/mlx5: add Direct Verbs final functions Yongseok Koh
2018-09-24 19:50   ` [dpdk-dev] [PATCH v2 11/11] net/mlx5: add runtime parameter to enable Direct Verbs Yongseok Koh

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=20180924194951.18650-1-yskoh@mellanox.com \
    --to=yskoh@mellanox.com \
    --cc=dev@dpdk.org \
    --cc=shahafs@mellanox.com \
    --cc=thomas@monjalon.net \
    /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).