All of lore.kernel.org
 help / color / mirror / Atom feed
* [pull request][net 00/15] mlx5 fixes 2022-05-03
@ 2022-05-04  7:02 Saeed Mahameed
  2022-05-04  7:02 ` [net 01/15] net/mlx5e: Fix wrong source vport matching on tunnel rule Saeed Mahameed
                   ` (14 more replies)
  0 siblings, 15 replies; 17+ messages in thread
From: Saeed Mahameed @ 2022-05-04  7:02 UTC (permalink / raw)
  To: David S. Miller, Jakub Kicinski, Paolo Abeni; +Cc: netdev, Saeed Mahameed

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

Thanks,
Saeed.


The following changes since commit 0a806ecc4023fcf393fcc1093f4a532813ca4124:

  Merge branch 'bnxt_en-bug-fixes' (2022-05-03 17:41:35 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-fixes-2022-05-03

for you to fetch changes up to a042d7f5bb68c47f6e0e546ca367d14e1e4b25ba:

  net/mlx5: Fix matching on inner TTC (2022-05-04 00:00:07 -0700)

----------------------------------------------------------------
mlx5-fixes-2022-05-03

----------------------------------------------------------------
Ariel Levkovich (4):
      net/mlx5e: Fix wrong source vport matching on tunnel rule
      net/mlx5e: TC, Fix ct_clear overwriting ct action metadata
      net/mlx5e: TC, fix decap fallback to uplink when int port not supported
      net/mlx5e: Avoid checking offload capability in post_parse action

Aya Levin (1):
      net/mlx5: Fix slab-out-of-bounds while reading resource dump menu

Mark Bloch (1):
      net/mlx5: Fix matching on inner TTC

Mark Zhang (1):
      net/mlx5e: Fix the calling of update_buffer_lossy() API

Moshe Shemesh (2):
      net/mlx5: Fix deadlock in sync reset flow
      net/mlx5: Avoid double clear or set of sync reset requested

Moshe Tal (1):
      net/mlx5e: Fix trust state reset in reload

Paul Blakey (1):
      net/mlx5e: CT: Fix queued up restore put() executing after relevant ft release

Vlad Buslov (4):
      net/mlx5e: Don't match double-vlan packets if cvlan is not set
      net/mlx5e: Lag, Fix use-after-free in fib event handler
      net/mlx5e: Lag, Fix fib_info pointer assignment
      net/mlx5e: Lag, Don't skip fib events on current dst

 .../ethernet/mellanox/mlx5/core/diag/rsc_dump.c    | 31 ++++++++---
 .../ethernet/mellanox/mlx5/core/en/port_buffer.c   |  4 +-
 .../ethernet/mellanox/mlx5/core/en/tc/act/act.c    |  3 +-
 .../net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c | 34 +++++++++++-
 drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c | 24 ++++-----
 drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.h | 11 ++++
 .../net/ethernet/mellanox/mlx5/core/en/tc_tun.c    |  3 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.c | 10 ++++
 drivers/net/ethernet/mellanox/mlx5/core/en_tc.c    | 11 ++++
 .../ethernet/mellanox/mlx5/core/eswitch_offloads.c |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c | 60 +++++++++++++---------
 drivers/net/ethernet/mellanox/mlx5/core/lag/mp.c   | 38 +++++++++-----
 drivers/net/ethernet/mellanox/mlx5/core/lag/mp.h   |  7 ++-
 .../net/ethernet/mellanox/mlx5/core/lag/port_sel.c |  2 +-
 .../net/ethernet/mellanox/mlx5/core/lib/fs_ttc.c   |  2 +
 15 files changed, 173 insertions(+), 69 deletions(-)

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

end of thread, other threads:[~2022-05-04 10:10 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-04  7:02 [pull request][net 00/15] mlx5 fixes 2022-05-03 Saeed Mahameed
2022-05-04  7:02 ` [net 01/15] net/mlx5e: Fix wrong source vport matching on tunnel rule Saeed Mahameed
2022-05-04 10:10   ` patchwork-bot+netdevbpf
2022-05-04  7:02 ` [net 02/15] net/mlx5: Fix slab-out-of-bounds while reading resource dump menu Saeed Mahameed
2022-05-04  7:02 ` [net 03/15] net/mlx5e: Don't match double-vlan packets if cvlan is not set Saeed Mahameed
2022-05-04  7:02 ` [net 04/15] net/mlx5e: Fix the calling of update_buffer_lossy() API Saeed Mahameed
2022-05-04  7:02 ` [net 05/15] net/mlx5e: Lag, Fix use-after-free in fib event handler Saeed Mahameed
2022-05-04  7:02 ` [net 06/15] net/mlx5e: Lag, Fix fib_info pointer assignment Saeed Mahameed
2022-05-04  7:02 ` [net 07/15] net/mlx5e: Lag, Don't skip fib events on current dst Saeed Mahameed
2022-05-04  7:02 ` [net 08/15] net/mlx5e: TC, Fix ct_clear overwriting ct action metadata Saeed Mahameed
2022-05-04  7:02 ` [net 09/15] net/mlx5e: TC, fix decap fallback to uplink when int port not supported Saeed Mahameed
2022-05-04  7:02 ` [net 10/15] net/mlx5e: CT: Fix queued up restore put() executing after relevant ft release Saeed Mahameed
2022-05-04  7:02 ` [net 11/15] net/mlx5e: Avoid checking offload capability in post_parse action Saeed Mahameed
2022-05-04  7:02 ` [net 12/15] net/mlx5e: Fix trust state reset in reload Saeed Mahameed
2022-05-04  7:02 ` [net 13/15] net/mlx5: Fix deadlock in sync reset flow Saeed Mahameed
2022-05-04  7:02 ` [net 14/15] net/mlx5: Avoid double clear or set of sync reset requested Saeed Mahameed
2022-05-04  7:02 ` [net 15/15] net/mlx5: Fix matching on inner TTC 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.