All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nelio Laranjeiro <nelio.laranjeiro@6wind.com>
To: dev@dpdk.org, Ferruh Yigit <ferruh.yigit@intel.com>
Cc: Shahaf Shuler <shahafs@mellanox.com>
Subject: [PATCH v2 0/8] net/mlx5: cleanups
Date: Wed, 23 Aug 2017 10:15:04 +0200	[thread overview]
Message-ID: <cover.1503475999.git.nelio.laranjeiro@6wind.com> (raw)
In-Reply-To: <cover.1501588970.git.nelio.laranjeiro@6wind.com>

This Series make some cleanup in mlx5 PMD by removing useless code or non
working code.

Changes in v2:

 - update mlx5 feature list to remove the multi process awareness.

Nelio Laranjeiro (8):
  net/mlx5: avoid reusing old queue's mbuf on reconfigure
  net/mlx5: prepare vector Rx ring at setup time
  net/mlx5: cleanup Rx ring in free functions
  net/mlx5: remove flow drop useless if branches
  net/mlx5: remove pdentic pragma
  net/mlx5: fix non working secondary process by removing it
  net/mlx5: remove multiple drop RSS queues
  net/mlx5: remove old MLNX_OFED 3.3 verification

 doc/guides/nics/features/mlx5.ini    |   1 -
 drivers/net/mlx5/Makefile            |   5 -
 drivers/net/mlx5/mlx5.c              |  40 +-------
 drivers/net/mlx5/mlx5.h              |  21 -----
 drivers/net/mlx5/mlx5_ethdev.c       | 174 +----------------------------------
 drivers/net/mlx5/mlx5_fdir.c         |   7 --
 drivers/net/mlx5/mlx5_flow.c         |  59 ++++--------
 drivers/net/mlx5/mlx5_mac.c          |   7 --
 drivers/net/mlx5/mlx5_mr.c           |   7 --
 drivers/net/mlx5/mlx5_rss.c          |   7 --
 drivers/net/mlx5/mlx5_rxmode.c       |   7 --
 drivers/net/mlx5/mlx5_rxq.c          | 166 +++++++++++----------------------
 drivers/net/mlx5/mlx5_rxtx.c         |  13 ---
 drivers/net/mlx5/mlx5_rxtx.h         |  13 +--
 drivers/net/mlx5/mlx5_rxtx_vec_sse.c |  45 ---------
 drivers/net/mlx5/mlx5_stats.c        |   7 --
 drivers/net/mlx5/mlx5_trigger.c      |   7 --
 drivers/net/mlx5/mlx5_txq.c          |  48 ----------
 drivers/net/mlx5/mlx5_vlan.c         |   7 --
 19 files changed, 77 insertions(+), 564 deletions(-)

-- 
2.1.4

  parent reply	other threads:[~2017-08-23  8:15 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-01 12:09 [PATCH 0/5] net/mlx5: cleanups Nelio Laranjeiro
2017-08-01 12:09 ` [PATCH 1/5] net/mlx5: remove flow drop useless if branches Nelio Laranjeiro
2017-08-01 12:09 ` [PATCH 2/5] net/mlx5: remove pdentic pragma Nelio Laranjeiro
2017-08-17 14:38   ` Ferruh Yigit
2017-08-22  9:10     ` Nélio Laranjeiro
2017-08-01 12:09 ` [PATCH 3/5] net/mlx5: fix non working secondary process by removing it Nelio Laranjeiro
2017-08-17 14:38   ` Ferruh Yigit
2017-08-22  9:08     ` Nélio Laranjeiro
2017-08-01 12:09 ` [PATCH 4/5] net/mlx5: remove multiple drop RSS queues Nelio Laranjeiro
2017-08-17 14:38   ` Ferruh Yigit
2017-08-22  8:59     ` Nélio Laranjeiro
2017-08-01 12:09 ` [PATCH 5/5] net/mlx5: remove old MLNX_OFED 3.3 verification Nelio Laranjeiro
2017-08-17 14:38   ` Ferruh Yigit
2017-08-22  8:25     ` Nélio Laranjeiro
2017-08-02 15:36 ` [PATCH 0/5] net/mlx5: cleanups Nélio Laranjeiro
2017-08-23  8:15 ` Nelio Laranjeiro [this message]
2017-08-23  8:15   ` [PATCH v2 1/8] net/mlx5: avoid reusing old queue's mbuf on reconfigure Nelio Laranjeiro
2017-08-23  8:15   ` [PATCH v2 2/8] net/mlx5: prepare vector Rx ring at setup time Nelio Laranjeiro
2017-08-23  8:15   ` [PATCH v2 3/8] net/mlx5: cleanup Rx ring in free functions Nelio Laranjeiro
2017-08-23  8:15   ` [PATCH v2 4/8] net/mlx5: remove flow drop useless if branches Nelio Laranjeiro
2017-08-23  8:15   ` [PATCH v2 5/8] net/mlx5: remove pdentic pragma Nelio Laranjeiro
2017-08-23  8:15   ` [PATCH v2 6/8] net/mlx5: fix non working secondary process by removing it Nelio Laranjeiro
2017-08-23  8:15   ` [PATCH v2 7/8] net/mlx5: remove multiple drop RSS queues Nelio Laranjeiro
2017-08-23  8:15   ` [PATCH v2 8/8] net/mlx5: remove old MLNX_OFED 3.3 verification Nelio Laranjeiro
2017-08-23 10:07   ` [PATCH v2 0/8] net/mlx5: cleanups Ferruh Yigit

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.1503475999.git.nelio.laranjeiro@6wind.com \
    --to=nelio.laranjeiro@6wind.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=shahafs@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.