netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [pull request][net 00/15] mlx5 fixes 2023-05-22
@ 2023-05-23  5:42 Saeed Mahameed
  2023-05-23  5:42 ` [net 01/15] net/mlx5: Collect command failures data only for known commands Saeed Mahameed
                   ` (14 more replies)
  0 siblings, 15 replies; 17+ messages in thread
From: Saeed Mahameed @ 2023-05-23  5:42 UTC (permalink / raw)
  To: David S. Miller, Jakub Kicinski, Paolo Abeni, Eric Dumazet
  Cc: Saeed Mahameed, netdev, Tariq Toukan

From: Saeed Mahameed <saeedm@nvidia.com>

This series provides bug fixes for the mlx5 driver.
Please pull and let me know if there is any problem.

Thanks,
Saeed.


The following changes since commit 18c40a1cc1d990c51381ef48cd93fdb31d5cd903:

  net/handshake: Fix sock->file allocation (2023-05-22 19:25:24 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-fixes-2023-05-22

for you to fetch changes up to 1da438c0ae02396dc5018b63237492cb5908608d:

  net/mlx5: Fix indexing of mlx5_irq (2023-05-22 22:38:06 -0700)

----------------------------------------------------------------
mlx5-fixes-2023-05-22

----------------------------------------------------------------
Erez Shitrit (1):
      net/mlx5: DR, Fix crc32 calculation to work on big-endian (BE) CPUs

Paul Blakey (1):
      net/mlx5e: TC, Fix using eswitch mapping in nic mode

Rahul Rameshbabu (1):
      net/mlx5e: Fix SQ wake logic in ptp napi_poll context

Roi Dayan (1):
      net/mlx5: Fix error message when failing to allocate device memory

Shay Drory (8):
      net/mlx5: Collect command failures data only for known commands
      net/mlx5: Handle pairing of E-switch via uplink un/load APIs
      net/mlx5: E-switch, Devcom, sync devcom events and devcom comp register
      net/mlx5: Devcom, fix error flow in mlx5_devcom_register_device
      net/mlx5: Devcom, serialize devcom registration
      net/mlx5: Free irqs only on shutdown callback
      net/mlx5: Fix irq affinity management
      net/mlx5: Fix indexing of mlx5_irq

Vlad Buslov (2):
      net/mlx5e: Use correct encap attribute during invalidation
      net/mlx5e: Fix deadlock in tc route query code

Yevgeny Kliteynik (1):
      net/mlx5: DR, Check force-loopback RC QP capability independently from RoCE

 drivers/net/ethernet/mellanox/mlx5/core/cmd.c      |  3 +-
 drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c   |  2 +
 .../ethernet/mellanox/mlx5/core/en/tc_tun_encap.c  |  4 +-
 drivers/net/ethernet/mellanox/mlx5/core/en/txrx.h  |  2 +
 drivers/net/ethernet/mellanox/mlx5/core/en_tc.c    | 57 ++++++++++++------
 drivers/net/ethernet/mellanox/mlx5/core/en_tx.c    | 19 +++---
 drivers/net/ethernet/mellanox/mlx5/core/eq.c       |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/eswitch.h  |  5 ++
 .../ethernet/mellanox/mlx5/core/eswitch_offloads.c | 16 +++--
 .../net/ethernet/mellanox/mlx5/core/lib/devcom.c   | 70 ++++++++++++++++------
 .../net/ethernet/mellanox/mlx5/core/lib/devcom.h   |  1 +
 drivers/net/ethernet/mellanox/mlx5/core/main.c     |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/mlx5_irq.h |  1 +
 drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c  | 40 +++++++++++--
 .../ethernet/mellanox/mlx5/core/steering/dr_cmd.c  |  4 +-
 .../ethernet/mellanox/mlx5/core/steering/dr_ste.c  |  3 +-
 include/linux/mlx5/mlx5_ifc.h                      |  4 +-
 17 files changed, 176 insertions(+), 59 deletions(-)

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

end of thread, other threads:[~2023-05-24  7:50 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-23  5:42 [pull request][net 00/15] mlx5 fixes 2023-05-22 Saeed Mahameed
2023-05-23  5:42 ` [net 01/15] net/mlx5: Collect command failures data only for known commands Saeed Mahameed
2023-05-24  7:50   ` patchwork-bot+netdevbpf
2023-05-23  5:42 ` [net 02/15] net/mlx5: Handle pairing of E-switch via uplink un/load APIs Saeed Mahameed
2023-05-23  5:42 ` [net 03/15] net/mlx5: DR, Fix crc32 calculation to work on big-endian (BE) CPUs Saeed Mahameed
2023-05-23  5:42 ` [net 04/15] net/mlx5: DR, Check force-loopback RC QP capability independently from RoCE Saeed Mahameed
2023-05-23  5:42 ` [net 05/15] net/mlx5e: Use correct encap attribute during invalidation Saeed Mahameed
2023-05-23  5:42 ` [net 06/15] net/mlx5: Fix error message when failing to allocate device memory Saeed Mahameed
2023-05-23  5:42 ` [net 07/15] net/mlx5e: Fix deadlock in tc route query code Saeed Mahameed
2023-05-23  5:42 ` [net 08/15] net/mlx5e: Fix SQ wake logic in ptp napi_poll context Saeed Mahameed
2023-05-23  5:42 ` [net 09/15] net/mlx5e: TC, Fix using eswitch mapping in nic mode Saeed Mahameed
2023-05-23  5:42 ` [net 10/15] net/mlx5: E-switch, Devcom, sync devcom events and devcom comp register Saeed Mahameed
2023-05-23  5:42 ` [net 11/15] net/mlx5: Devcom, fix error flow in mlx5_devcom_register_device Saeed Mahameed
2023-05-23  5:42 ` [net 12/15] net/mlx5: Devcom, serialize devcom registration Saeed Mahameed
2023-05-23  5:42 ` [net 13/15] net/mlx5: Free irqs only on shutdown callback Saeed Mahameed
2023-05-23  5:42 ` [net 14/15] net/mlx5: Fix irq affinity management Saeed Mahameed
2023-05-23  5:42 ` [net 15/15] net/mlx5: Fix indexing of mlx5_irq Saeed Mahameed

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