DPDK patches and discussions
 help / color / mirror / Atom feed
From: Shahaf Shuler <shahafs@mellanox.com>
To: nelio.laranjeiro@6wind.com, yskoh@mellanox.com,
	adrien.mazarguil@6wind.com
Cc: dev@dpdk.org
Subject: [dpdk-dev] [PATCH v2 0/7] convert mlx PMDs to new ethdev offloads API
Date: Wed,  3 Jan 2018 09:16:10 +0200	[thread overview]
Message-ID: <cover.1514963302.git.shahafs@mellanox.com> (raw)
In-Reply-To: <20171123120252.143695-1-shahafs@mellanox.com>

This series is to convert mlx4 and mlx5 PMDs to the new offloads API [1].

On v2:
 - New design to hold PMD specific args and combine
   them with offloads requested.
 - Fix missing IPV4 checksum flag on vector function selection.
 - Verify Txq flags ignore bit before checking for valid offloads
   configuration.
 - Removed strict offloads check from mlx4. 

[1] http://dpdk.org/ml/archives/dev/2017-October/077329.html

Nelio Laranjeiro (1):
  net/mlx5: rename counter set in configuration

Shahaf Shuler (6):
  net/mlx5: change pkt burst select function prototype
  net/mlx5: add device configuration structure
  net/mlx5: convert to new Tx offloads API
  net/mlx5: convert to new Rx offloads API
  net/mlx4: convert to new Tx offloads API
  net/mlx4: convert to new Rx offloads API

 doc/guides/nics/mlx5.rst         |  15 +-
 drivers/net/mlx4/mlx4_ethdev.c   |  17 +--
 drivers/net/mlx4/mlx4_flow.c     |   5 +-
 drivers/net/mlx4/mlx4_rxq.c      |  78 ++++++++++-
 drivers/net/mlx4/mlx4_rxtx.h     |   3 +
 drivers/net/mlx4/mlx4_txq.c      |  71 +++++++++-
 drivers/net/mlx5/mlx5.c          | 190 +++++++++----------------
 drivers/net/mlx5/mlx5.h          |  57 +++++---
 drivers/net/mlx5/mlx5_ethdev.c   | 113 ++++++++-------
 drivers/net/mlx5/mlx5_flow.c     |   2 +-
 drivers/net/mlx5/mlx5_rxq.c      | 121 +++++++++++++---
 drivers/net/mlx5/mlx5_rxtx.c     |   6 +-
 drivers/net/mlx5/mlx5_rxtx.h     |  10 +-
 drivers/net/mlx5/mlx5_rxtx_vec.c |  40 +++---
 drivers/net/mlx5/mlx5_rxtx_vec.h |  12 ++
 drivers/net/mlx5/mlx5_trigger.c  |   4 +-
 drivers/net/mlx5/mlx5_txq.c      | 254 +++++++++++++++++++++++++---------
 drivers/net/mlx5/mlx5_vlan.c     |   7 +-
 18 files changed, 662 insertions(+), 343 deletions(-)

-- 
2.12.0

  parent reply	other threads:[~2018-01-03  7:17 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-23 12:02 [dpdk-dev] [PATCH 0/6] " Shahaf Shuler
2017-11-23 12:02 ` [dpdk-dev] [PATCH 1/6] net/mlx5: store PMD args in private structure Shahaf Shuler
2017-11-23 12:02 ` [dpdk-dev] [PATCH 2/6] net/mlx5: convert to new Tx offloads API Shahaf Shuler
2017-11-23 12:02 ` [dpdk-dev] [PATCH 3/6] net/mlx5: convert to new Rx " Shahaf Shuler
2017-11-23 12:02 ` [dpdk-dev] [PATCH 4/6] net/mlx5: fix VLAN configuration after port stop Shahaf Shuler
2017-11-23 12:02 ` [dpdk-dev] [PATCH 5/6] net/mlx4: convert to new Tx offloads API Shahaf Shuler
2017-11-23 12:02 ` [dpdk-dev] [PATCH 6/6] net/mlx4: convert to new Rx " Shahaf Shuler
2018-01-03  7:16 ` Shahaf Shuler [this message]
2018-01-03  7:16   ` [dpdk-dev] [PATCH v2 1/7] net/mlx5: change pkt burst select function prototype Shahaf Shuler
2018-01-03  7:16   ` [dpdk-dev] [PATCH v2 2/7] net/mlx5: add device configuration structure Shahaf Shuler
2018-01-03  7:16   ` [dpdk-dev] [PATCH v2 3/7] net/mlx5: rename counter set in configuration Shahaf Shuler
2018-01-03  7:16   ` [dpdk-dev] [PATCH v2 4/7] net/mlx5: convert to new Tx offloads API Shahaf Shuler
2018-01-03  7:16   ` [dpdk-dev] [PATCH v2 5/7] net/mlx5: convert to new Rx " Shahaf Shuler
2018-01-04 10:12     ` Nelio Laranjeiro
2018-01-03  7:16   ` [dpdk-dev] [PATCH v2 6/7] net/mlx4: convert to new Tx " Shahaf Shuler
2018-01-03 17:29     ` Adrien Mazarguil
2018-01-04 11:55       ` Shahaf Shuler
2018-01-09 10:35         ` Nelio Laranjeiro
2018-01-03  7:16   ` [dpdk-dev] [PATCH v2 7/7] net/mlx4: convert to new Rx " Shahaf Shuler
2018-01-03 17:29     ` Adrien Mazarguil
2018-01-10  9:16   ` [dpdk-dev] [PATCH v3 0/7] convert mlx PMDs to new ethdev " Shahaf Shuler
2018-01-10  9:16     ` [dpdk-dev] [PATCH v3 1/7] net/mlx5: change pkt burst select function prototype Shahaf Shuler
2018-01-10  9:16     ` [dpdk-dev] [PATCH v3 2/7] net/mlx5: add device configuration structure Shahaf Shuler
2018-01-10  9:16     ` [dpdk-dev] [PATCH v3 3/7] net/mlx5: rename counter set in configuration Shahaf Shuler
2018-01-10  9:17     ` [dpdk-dev] [PATCH v3 4/7] net/mlx5: convert to new Tx offloads API Shahaf Shuler
2018-01-10  9:17     ` [dpdk-dev] [PATCH v3 5/7] net/mlx5: convert to new Rx " Shahaf Shuler
2018-01-10  9:17     ` [dpdk-dev] [PATCH v3 6/7] net/mlx4: convert to new Tx " Shahaf Shuler
2018-01-10  9:17     ` [dpdk-dev] [PATCH v3 7/7] net/mlx4: convert to new Rx " Shahaf Shuler
2018-01-10 15:24     ` [dpdk-dev] [PATCH v3 0/7] convert mlx PMDs to new ethdev " Shahaf Shuler

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=cover.1514963302.git.shahafs@mellanox.com \
    --to=shahafs@mellanox.com \
    --cc=adrien.mazarguil@6wind.com \
    --cc=dev@dpdk.org \
    --cc=nelio.laranjeiro@6wind.com \
    --cc=yskoh@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).