patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH 00/67] net/mlx5: backport patches for v17.11.3 LTS
@ 2018-06-05  0:10 Yongseok Koh
  2018-06-05  0:10 ` [dpdk-stable] [PATCH 01/67] net/mlx5: remove get priv internal function Yongseok Koh
                   ` (58 more replies)
  0 siblings, 59 replies; 60+ messages in thread
From: Yongseok Koh @ 2018-06-05  0:10 UTC (permalink / raw)
  To: yliu; +Cc: stable, shahafs, adrien.mazarguil, nelio.laranjeiro, Yongseok Koh

This patchset includes patches for mlx4 and mlx5. All the patches are from
dpdk/master and properly backported based on stable/17.11.

Adrien Mazarguil (6):
  net/mlx: control netdevices through ioctl only
  net/mlx4: fix RSS resource leak in case of error
  net/mlx5: fix RSS flow action bounds check
  net/mlx5: fix flow director rule deletion crash
  net/mlx4: fix Rx resource leak in case of error
  net/mlx4: fix UDP flow rule limitation enforcement

Dahir Osman (1):
  net/mlx5: setup RSS regardless of queue count

David Marchand (1):
  net/mlx5: fix count in xstats

Gavin Hu (1):
  net/mlx5: fix build with clang on ARM

Moti Haimovsky (2):
  net/mlx4: fix broadcast Rx
  net/mlx4: fix removal detection of stopped port

Nélio Laranjeiro (26):
  net/mlx5: remove get priv internal function
  net/mlx5: fix flow director conversion
  net/mlx5: fix reception of multiple MAC addresses
  net/mlx5: fix sriov flag
  net/mlx5: name parameters in function prototypes
  net/mlx5: mark parameters with unused attribute
  net/mlx5: normalize function prototypes
  net/mlx5: add missing function documentation
  net/mlx5: remove useless empty lines
  net/mlx5: remove control path locks
  net/mlx5: prefix all functions with mlx5
  net/mlx5: change non failing function return values
  net/mlx5: standardize on negative errno values
  net/mlx5: use port id in PMD log
  net/mlx5: use dynamic logging
  net/mlx5: remove kernel version check
  net/mlx5: fix link status behavior
  net/mlx5: fix link status to use wait to complete
  net/mlx5: change tunnel flow priority
  net/mlx5: improve flow error explanation
  net/mlx5: refuse empty VLAN flow specification
  net/mlx5: fix icc build
  net/mlx5: remove 32-bit support
  net/mlx5: split L3/L4 in flow director
  net/mlx5: fix flow director mask
  net/mlx5: fix flow validation

Olivier Matz (1):
  net/mlx5: fix allocation when no memory on device NUMA node

Ophir Munk (2):
  net/mlx4: fix single port configuration
  net/mlx4: avoid constant recreations in function

Rami Rosen (1):
  net/mlx4: fix a typo in header file

Raslan Darawsheh (3):
  net/mlx4: store RSS hash result in mbufs
  net/mlx5: fix double free on error handling
  net/mlx5: fix resource leak in case of error

Shachar Beiser (2):
  net: add IPv6 header fields macros
  net/mlx5: fix IPv6 header fields

Shahaf Shuler (12):
  net/mlx5: fix secondary process mempool registration
  net/mlx5: remove assert un-accessible from secondary process
  net/mlx5: warn for unsuccessful memory registration
  net/mlx5: fix CRC strip capability query
  net/mlx5: change pkt burst select function prototype
  net/mlx5: enforce RSS key length limitation
  net/mlx5: fix RSS key length query
  net/mlx5: fix link status initialization
  net/mlx5: fix ethtool link setting call order
  net/mlx5: fix socket connection return value
  net/mlx5: fix probe return value polarity
  net/mlx5: fix flow director drop rule deletion crash

Xueming Li (4):
  net/mlx5: map UAR address around huge pages
  net/mlx5: fix close after start failure
  net/mlx5: fix invalid flow item check
  net/mlx5: add data-plane debug message macro

Yongseok Koh (5):
  net/mlx5: fix synchronization on polling Rx completions
  net/mlx5: fix disabling Tx packet inlining
  net/mlx5: remove excessive data prefetch
  net/mlx5: fix calculation of Tx TSO inline room size
  net/mlx5: change device reference for secondary process

 doc/guides/nics/mlx5.rst              |    6 +-
 drivers/net/mlx4/mlx4.c               |   18 +-
 drivers/net/mlx4/mlx4.h               |    3 +
 drivers/net/mlx4/mlx4_ethdev.c        |  192 +-----
 drivers/net/mlx4/mlx4_flow.c          |   34 +-
 drivers/net/mlx4/mlx4_flow.h          |    1 +
 drivers/net/mlx4/mlx4_intr.c          |   41 +-
 drivers/net/mlx4/mlx4_rxq.c           |    7 +
 drivers/net/mlx4/mlx4_rxtx.c          |    3 +-
 drivers/net/mlx4/mlx4_rxtx.h          |    2 +-
 drivers/net/mlx5/mlx5.c               |  525 +++++++++------
 drivers/net/mlx5/mlx5.h               |  267 ++++----
 drivers/net/mlx5/mlx5_defs.h          |   14 +-
 drivers/net/mlx5/mlx5_ethdev.c        | 1018 +++++++++--------------------
 drivers/net/mlx5/mlx5_flow.c          | 1132 ++++++++++++++++++---------------
 drivers/net/mlx5/mlx5_mac.c           |   49 +-
 drivers/net/mlx5/mlx5_mr.c            |  197 +++---
 drivers/net/mlx5/mlx5_rss.c           |  176 +++--
 drivers/net/mlx5/mlx5_rxmode.c        |   28 +-
 drivers/net/mlx5/mlx5_rxq.c           |  712 ++++++++++++---------
 drivers/net/mlx5/mlx5_rxtx.c          |   76 +--
 drivers/net/mlx5/mlx5_rxtx.h          |  179 +++---
 drivers/net/mlx5/mlx5_rxtx_vec.c      |   26 +-
 drivers/net/mlx5/mlx5_rxtx_vec_neon.h |   65 +-
 drivers/net/mlx5/mlx5_rxtx_vec_sse.h  |    2 +-
 drivers/net/mlx5/mlx5_socket.c        |  167 +++--
 drivers/net/mlx5/mlx5_stats.c         |  248 ++++----
 drivers/net/mlx5/mlx5_trigger.c       |  258 ++++----
 drivers/net/mlx5/mlx5_txq.c           |  379 ++++++-----
 drivers/net/mlx5/mlx5_utils.h         |   29 +-
 drivers/net/mlx5/mlx5_vlan.c          |  106 ++-
 lib/librte_net/rte_ip.h               |    6 +
 32 files changed, 2947 insertions(+), 3019 deletions(-)

-- 
2.11.0

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

end of thread, other threads:[~2018-06-05  0:13 UTC | newest]

Thread overview: 60+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-05  0:10 [dpdk-stable] [PATCH 00/67] net/mlx5: backport patches for v17.11.3 LTS Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 01/67] net/mlx5: remove get priv internal function Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 02/67] net/mlx4: store RSS hash result in mbufs Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 03/67] net/mlx5: fix synchronization on polling Rx completions Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 04/67] net/mlx5: fix allocation when no memory on device NUMA node Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 05/67] net/mlx5: fix flow director conversion Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 06/67] net/mlx5: fix reception of multiple MAC addresses Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 07/67] net/mlx5: fix secondary process mempool registration Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 08/67] net/mlx5: remove assert un-accessible from secondary process Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 09/67] net/mlx5: warn for unsuccessful memory registration Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 10/67] net/mlx5: map UAR address around huge pages Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 11/67] net/mlx4: fix single port configuration Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 12/67] net/mlx4: fix broadcast Rx Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 13/67] net/mlx4: fix removal detection of stopped port Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 14/67] net/mlx5: fix CRC strip capability query Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 15/67] net/mlx5: fix close after start failure Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 16/67] net/mlx: control netdevices through ioctl only Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 17/67] net/mlx5: fix disabling Tx packet inlining Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 18/67] net/mlx5: fix sriov flag Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 19/67] net/mlx5: name parameters in function prototypes Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 20/67] net/mlx5: mark parameters with unused attribute Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 21/67] net/mlx5: normalize function prototypes Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 22/67] net/mlx5: add missing function documentation Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 23/67] net/mlx5: remove useless empty lines Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 24/67] net/mlx5: remove control path locks Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 25/67] net/mlx5: prefix all functions with mlx5 Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 26/67] net/mlx5: change non failing function return values Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 27/67] net/mlx5: standardize on negative errno values Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 28/67] net/mlx5: use port id in PMD log Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 29/67] net/mlx5: use dynamic logging Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 30/67] net/mlx5: remove kernel version check Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 31/67] net/mlx5: change pkt burst select function prototype Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 32/67] net/mlx5: fix link status behavior Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 33/67] net/mlx5: fix link status to use wait to complete Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 34/67] net/mlx5: change tunnel flow priority Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 35/67] net/mlx5: improve flow error explanation Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 36/67] net/mlx5: refuse empty VLAN flow specification Yongseok Koh
2018-06-05  0:10 ` [dpdk-stable] [PATCH 37/67] net/mlx5: fix icc build Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 38/67] net/mlx5: setup RSS regardless of queue count Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 39/67] net/mlx5: enforce RSS key length limitation Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 40/67] net/mlx5: fix RSS key length query Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 41/67] net/mlx4: fix a typo in header file Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 42/67] net/mlx5: remove 32-bit support Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 43/67] net/mlx5: remove excessive data prefetch Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 44/67] net/mlx5: fix link status initialization Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 45/67] net/mlx4: fix RSS resource leak in case of error Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 46/67] net/mlx5: fix RSS flow action bounds check Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 47/67] net/mlx5: fix invalid flow item check Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 48/67] net/mlx5: split L3/L4 in flow director Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 49/67] net/mlx5: fix flow director mask Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 50/67] net/mlx5: fix flow director rule deletion crash Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 51/67] net/mlx4: fix Rx resource leak in case of error Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 52/67] net/mlx5: fix ethtool link setting call order Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 53/67] net/mlx5: fix socket connection return value Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 54/67] net/mlx5: add data-plane debug message macro Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 55/67] net/mlx5: fix probe return value polarity Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 56/67] net/mlx5: fix flow validation Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 57/67] net/mlx4: fix UDP flow rule limitation enforcement Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 58/67] net/mlx5: fix double free on error handling Yongseok Koh
2018-06-05  0:11 ` [dpdk-stable] [PATCH 59/67] net/mlx5: fix resource leak in case of error Yongseok Koh

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