All of lore.kernel.org
 help / color / mirror / Atom feed
* [pull request][net 00/12] mlx5 fixes 2021-08-09
@ 2021-08-10  3:59 Saeed Mahameed
  2021-08-10  3:59 ` [net 01/12] net/mlx5: Don't skip subfunction cleanup in case of error in module init Saeed Mahameed
                   ` (11 more replies)
  0 siblings, 12 replies; 14+ messages in thread
From: Saeed Mahameed @ 2021-08-10  3:59 UTC (permalink / raw)
  To: David S. Miller, Jakub Kicinski
  Cc: netdev, Leon Romanovsky, Tariq Toukan, Saeed Mahameed

From: Saeed Mahameed <saeedm@nvidia.com>

Hi Dave, Jakub,

This series introduces fixes to mlx5 driver.
Please pull and let me know if there is any problem.

Thanks,
Saeed.

---
The following changes since commit d09c548dbf3b31cb07bba562e0f452edfa01efe3:

  net: sched: act_mirred: Reset ct info when mirror/redirect skb (2021-08-09 10:58:47 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-fixes-2021-08-09

for you to fetch changes up to bd37c2888ccaa5ceb9895718f6909b247cc372e0:

  net/mlx5: Fix return value from tracer initialization (2021-08-09 20:57:03 -0700)

----------------------------------------------------------------
mlx5-fixes-2021-08-09

----------------------------------------------------------------
Alex Vesker (1):
      net/mlx5: DR, Add fail on error check on decap

Aya Levin (2):
      net/mlx5: Block switchdev mode while devlink traps are active
      net/mlx5: Fix return value from tracer initialization

Chris Mi (1):
      net/mlx5e: TC, Fix error handling memory leak

Leon Romanovsky (1):
      net/mlx5: Don't skip subfunction cleanup in case of error in module init

Maxim Mikityanskiy (1):
      net/mlx5e: Destroy page pool after XDP SQ to fix use-after-free

Roi Dayan (1):
      net/mlx5e: Avoid creating tunnel headers for local route

Shay Drory (4):
      net/mlx5: Fix order of functions in mlx5_irq_detach_nb()
      net/mlx5: Set all field of mlx5_irq before inserting it to the xarray
      net/mlx5: Destroy pool->mutex
      net/mlx5: Synchronize correct IRQ when destroying CQ

Vlad Buslov (1):
      net/mlx5: Bridge, fix ageing time

 drivers/infiniband/hw/mlx5/cq.c                    |  4 +--
 drivers/infiniband/hw/mlx5/devx.c                  |  3 +-
 drivers/net/ethernet/mellanox/mlx5/core/cq.c       |  1 +
 .../ethernet/mellanox/mlx5/core/diag/fw_tracer.c   | 11 ++++++--
 .../net/ethernet/mellanox/mlx5/core/en/tc_tun.c    |  5 ++++
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  | 33 ++++++++--------------
 drivers/net/ethernet/mellanox/mlx5/core/eq.c       | 20 ++++++++++---
 .../net/ethernet/mellanox/mlx5/core/esw/bridge.c   |  4 +--
 .../net/ethernet/mellanox/mlx5/core/esw/sample.c   |  1 +
 .../ethernet/mellanox/mlx5/core/eswitch_offloads.c | 14 +++++++--
 .../net/ethernet/mellanox/mlx5/core/fpga/conn.c    |  4 +--
 drivers/net/ethernet/mellanox/mlx5/core/lib/eq.h   |  2 ++
 drivers/net/ethernet/mellanox/mlx5/core/main.c     | 12 +++-----
 .../net/ethernet/mellanox/mlx5/core/mlx5_core.h    |  5 ++++
 drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c  | 10 +++++--
 .../ethernet/mellanox/mlx5/core/steering/dr_send.c |  4 +--
 .../mellanox/mlx5/core/steering/dr_ste_v0.c        |  2 ++
 drivers/vdpa/mlx5/net/mlx5_vnet.c                  |  3 +-
 include/linux/mlx5/driver.h                        |  3 +-
 19 files changed, 83 insertions(+), 58 deletions(-)

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

end of thread, other threads:[~2021-08-10  8:53 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-10  3:59 [pull request][net 00/12] mlx5 fixes 2021-08-09 Saeed Mahameed
2021-08-10  3:59 ` [net 01/12] net/mlx5: Don't skip subfunction cleanup in case of error in module init Saeed Mahameed
2021-08-10  8:53   ` patchwork-bot+netdevbpf
2021-08-10  3:59 ` [net 02/12] net/mlx5: DR, Add fail on error check on decap Saeed Mahameed
2021-08-10  3:59 ` [net 03/12] net/mlx5e: Avoid creating tunnel headers for local route Saeed Mahameed
2021-08-10  3:59 ` [net 04/12] net/mlx5: Bridge, fix ageing time Saeed Mahameed
2021-08-10  3:59 ` [net 05/12] net/mlx5e: Destroy page pool after XDP SQ to fix use-after-free Saeed Mahameed
2021-08-10  3:59 ` [net 06/12] net/mlx5: Block switchdev mode while devlink traps are active Saeed Mahameed
2021-08-10  3:59 ` [net 07/12] net/mlx5: Fix order of functions in mlx5_irq_detach_nb() Saeed Mahameed
2021-08-10  3:59 ` [net 08/12] net/mlx5: Set all field of mlx5_irq before inserting it to the xarray Saeed Mahameed
2021-08-10  3:59 ` [net 09/12] net/mlx5: Destroy pool->mutex Saeed Mahameed
2021-08-10  3:59 ` [net 10/12] net/mlx5e: TC, Fix error handling memory leak Saeed Mahameed
2021-08-10  3:59 ` [net 11/12] net/mlx5: Synchronize correct IRQ when destroying CQ Saeed Mahameed
2021-08-10  3:59 ` [net 12/12] net/mlx5: Fix return value from tracer initialization Saeed Mahameed

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.