DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 00/17] Enhance mlx5 with Mellanox OFED 3.1
@ 2015-10-05 17:54 Adrien Mazarguil
  2015-10-05 17:54 ` [dpdk-dev] [PATCH 01/17] mlx5: use fast Verbs interface for scattered RX operation Adrien Mazarguil
                   ` (18 more replies)
  0 siblings, 19 replies; 39+ messages in thread
From: Adrien Mazarguil @ 2015-10-05 17:54 UTC (permalink / raw)
  To: dev

Mellanox OFED 3.1 [1] comes with improved APIs that Mellanox ConnectX-4
(mlx5) adapters can take advantage of, such as:

- Separate post and doorbell operations on all queues.
- Lightweight RX queues called Work Queues (WQs).
- Low-level RSS indirection table and hash key configuration.

This patchset enhances mlx5 with all of these for better performance and
flexibility. Documentation is updated accordingly.

[1] http://www.mellanox.com/page/products_dyn?product_family=26&mtag=linux_sw_drivers

Adrien Mazarguil (8):
  mlx5: use fast Verbs interface for scattered RX operation
  mlx5: get rid of the WR structure in RX queue elements
  mlx5: refactor RX code for the new Verbs RSS API
  mlx5: restore allmulti and promisc modes after device restart
  app/testpmd: fix missing initialization in the RSS hash show command
  mlx5: use experimental flows in hash RX queues
  mlx5: enable multi packet send WR in TX CQ
  doc: update mlx5 documentation

Nelio Laranjeiro (5):
  mlx5: adapt indirection table size depending on RX queues number
  mlx5: add RSS hash update/get
  mlx5: use one RSS hash key per flow type
  app/testpmd: add missing type to RSS hash commands
  mlx5: remove normal MAC flows when enabling promiscuous mode

Olga Shern (3):
  mlx5: use separate indirection table for default hash RX queue
  mlx5: define specific flow steering rules for each hash RX QP
  mlx5: use alternate method to configure promiscuous mode

Yaacov Hazan (1):
  mlx5: fix compilation error with GCC < 4.6

 app/test-pmd/cmdline.c                      |  45 +-
 app/test-pmd/config.c                       |  69 +-
 app/test-pmd/testpmd.h                      |   6 +-
 doc/guides/nics/mlx5.rst                    |  26 +
 doc/guides/testpmd_app_ug/testpmd_funcs.rst |   2 +-
 drivers/net/mlx5/Makefile                   |  10 +-
 drivers/net/mlx5/mlx5.c                     |  69 +-
 drivers/net/mlx5/mlx5.h                     |  56 +-
 drivers/net/mlx5/mlx5_defs.h                |   3 +
 drivers/net/mlx5/mlx5_ethdev.c              |  53 +-
 drivers/net/mlx5/mlx5_mac.c                 | 214 ++++---
 drivers/net/mlx5/mlx5_rss.c                 | 213 +++++++
 drivers/net/mlx5/mlx5_rxmode.c              | 327 +++++-----
 drivers/net/mlx5/mlx5_rxq.c                 | 938 ++++++++++++++++++----------
 drivers/net/mlx5/mlx5_rxtx.c                |  68 +-
 drivers/net/mlx5/mlx5_rxtx.h                |  88 ++-
 drivers/net/mlx5/mlx5_trigger.c             |  86 +--
 drivers/net/mlx5/mlx5_txq.c                 |   7 +
 drivers/net/mlx5/mlx5_utils.h               |   2 -
 drivers/net/mlx5/mlx5_vlan.c                |  44 +-
 20 files changed, 1451 insertions(+), 875 deletions(-)
 create mode 100644 drivers/net/mlx5/mlx5_rss.c

-- 
2.1.0

^ permalink raw reply	[flat|nested] 39+ messages in thread

end of thread, other threads:[~2015-11-01 10:28 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-05 17:54 [dpdk-dev] [PATCH 00/17] Enhance mlx5 with Mellanox OFED 3.1 Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 01/17] mlx5: use fast Verbs interface for scattered RX operation Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 02/17] mlx5: get rid of the WR structure in RX queue elements Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 03/17] mlx5: refactor RX code for the new Verbs RSS API Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 04/17] mlx5: restore allmulti and promisc modes after device restart Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 05/17] mlx5: use separate indirection table for default hash RX queue Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 06/17] mlx5: adapt indirection table size depending on RX queues number Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 07/17] mlx5: define specific flow steering rules for each hash RX QP Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 08/17] mlx5: use alternate method to configure promiscuous mode Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 09/17] mlx5: add RSS hash update/get Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 10/17] mlx5: use one RSS hash key per flow type Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 11/17] app/testpmd: add missing type to RSS hash commands Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 12/17] app/testpmd: fix missing initialization in the RSS hash show command Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 13/17] mlx5: remove normal MAC flows when enabling promiscuous mode Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 14/17] mlx5: use experimental flows in hash RX queues Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 15/17] mlx5: enable multi packet send WR in TX CQ Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 16/17] mlx5: fix compilation error with GCC < 4.6 Adrien Mazarguil
2015-10-05 17:54 ` [dpdk-dev] [PATCH 17/17] doc: update mlx5 documentation Adrien Mazarguil
2015-10-06  8:54 ` [dpdk-dev] [PATCH 00/17] Enhance mlx5 with Mellanox OFED 3.1 Stephen Hemminger
2015-10-06  9:58   ` Vincent JARDIN
2015-10-07 13:30   ` Joongi Kim
2015-10-30 18:55 ` [dpdk-dev] [PATCH v2 00/16] " Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 01/16] mlx5: use fast Verbs interface for scattered RX operation Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 02/16] mlx5: get rid of the WR structure in RX queue elements Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 03/16] mlx5: refactor RX code for the new Verbs RSS API Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 04/16] mlx5: use separate indirection table for default hash RX queue Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 05/16] mlx5: adapt indirection table size depending on RX queues number Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 06/16] mlx5: define specific flow steering rules for each hash RX QP Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 07/16] mlx5: use alternate method to configure promisc and allmulti modes Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 08/16] mlx5: add RSS hash update/get Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 09/16] mlx5: use one RSS hash key per flow type Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 10/16] app/testpmd: add missing type to RSS hash commands Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 11/16] app/testpmd: fix missing initialization in the RSS hash show command Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 12/16] mlx5: disable useless flows in promiscuous mode Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 13/16] mlx5: add IPv6 RSS support using experimental flows Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 14/16] mlx5: enable multi packet send WR in TX CQ Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 15/16] mlx5: fix compilation error with GCC < 4.6 Adrien Mazarguil
2015-10-30 18:55   ` [dpdk-dev] [PATCH v2 16/16] doc: update mlx5 documentation Adrien Mazarguil
2015-11-01 10:26   ` [dpdk-dev] [PATCH v2 00/16] Enhance mlx5 with Mellanox OFED 3.1 Thomas Monjalon

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).