Hi Dave, This series introduces some fixes to mlx5 driver.
1) Ariel is addressing an issue with enacp flow counter race condition 2) Aya fixes ethtool speed handling 3) Edward fixes modify_cq hw bits alignment 4) Maor fixes RDMA_RX capabilities handling 5) Mark reverses unregister devices order to address an issue with LAG 6) From Tariq, - wrong max num channels indication regression - TLS counters naming and documentation as suggested by Jakub - kTLS, Call WARN_ONCE on netdev mismatch There is one patch in this series that touches nfp driver to align TLS statistics names with latest documentation, Jakub is CC'ed. Please pull and let me know if there is any problem. For -stable v4.9: ('net/mlx5: Use reversed order when unregister devices') For -stable v4.20 ('net/mlx5e: Prevent encap flow counter update async to user query') ('net/mlx5: Fix modify_cq_in alignment') For -stable v5.1 ('net/mlx5e: Fix matching of speed to PRM link modes') For -stable v5.2 ('net/mlx5: Add missing RDMA_RX capabilities') Thanks, Saeed. --- The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b: Linus 5.3-rc1 (2019-07-21 14:05:38 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-fixes-2019-07-25 for you to fetch changes up to 280c089916228a005af7f95c1716ea1fea1027b5: Documentation: TLS: fix stat counters description (2019-07-25 13:31:01 -0700) ---------------------------------------------------------------- mlx5-fixes-2019-07-25 ---------------------------------------------------------------- Ariel Levkovich (1): net/mlx5e: Prevent encap flow counter update async to user query Aya Levin (1): net/mlx5e: Fix matching of speed to PRM link modes Edward Srouji (1): net/mlx5: Fix modify_cq_in alignment Maor Gottlieb (1): net/mlx5: Add missing RDMA_RX capabilities Mark Zhang (1): net/mlx5: Use reversed order when unregister devices Tariq Toukan (4): net/mlx5e: Fix wrong max num channels indication net/mlx5e: kTLS, Call WARN_ONCE on netdev mismatch nfp: tls: rename tls packet counters Documentation: TLS: fix stat counters description Documentation/networking/tls-offload.rst | 23 ++++++-- drivers/net/ethernet/mellanox/mlx5/core/dev.c | 2 +- drivers/net/ethernet/mellanox/mlx5/core/en.h | 12 +--- .../net/ethernet/mellanox/mlx5/core/en/params.h | 5 +- drivers/net/ethernet/mellanox/mlx5/core/en/port.c | 27 ++++++--- drivers/net/ethernet/mellanox/mlx5/core/en/port.h | 6 +- .../ethernet/mellanox/mlx5/core/en_accel/ktls_tx.c | 2 +- .../net/ethernet/mellanox/mlx5/core/en_ethtool.c | 69 +++++++++++++++------- .../ethernet/mellanox/mlx5/core/en_fs_ethtool.c | 3 +- drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 36 +++++------ drivers/net/ethernet/mellanox/mlx5/core/en_rep.c | 2 + drivers/net/ethernet/mellanox/mlx5/core/en_stats.c | 8 +-- drivers/net/ethernet/mellanox/mlx5/core/en_tc.c | 4 +- drivers/net/ethernet/mellanox/mlx5/core/fs_core.h | 5 +- .../net/ethernet/mellanox/mlx5/core/fs_counters.c | 5 ++ .../net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c | 7 +-- .../ethernet/mellanox/mlx5/core/ipoib/ipoib_vlan.c | 1 + .../net/ethernet/netronome/nfp/nfp_net_ethtool.c | 4 +- include/linux/mlx5/fs.h | 1 + include/linux/mlx5/mlx5_ifc.h | 6 +- 20 files changed, 139 insertions(+), 89 deletions(-)