All of lore.kernel.org
 help / color / mirror / Atom feed
* [pull request][net-next 00/16] mlx5 updates 2022-03-09
@ 2022-03-09 21:37 Saeed Mahameed
  2022-03-09 21:37 ` [net-next 01/16] net/mlx5e: TC, Fix use after free in mlx5e_clone_flow_attr_for_post_act() Saeed Mahameed
                   ` (15 more replies)
  0 siblings, 16 replies; 18+ messages in thread
From: Saeed Mahameed @ 2022-03-09 21:37 UTC (permalink / raw)
  To: David S. Miller, Jakub Kicinski; +Cc: netdev, Saeed Mahameed

From: Saeed Mahameed <saeedm@nvidia.com>

Hi Dave, Hi Jakub,

This pull request adds two mlx5 updates.
 
 1) debugfs for to provide stats on FW command failures, especially the
to eliminate kernel log on FW events for FW page management commands.
 
 2) Support Software steering for ConnectX-7 device.

For more information please see tag log below.

Please pull and let me know if there is any problem.

Thanks,
Saeed.


The following changes since commit 24055bb87977e0c687b54ebf7bac8715f3636bc3:

  net: tcp: fix shim definition of tcp_inbound_md5_hash (2022-03-09 08:44:40 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2022-03-09

for you to fetch changes up to 6862c787c7e88df490675ed781dc9052dba88a56:

  net/mlx5: DR, Add support for ConnectX-7 steering (2022-03-09 13:33:04 -0800)

----------------------------------------------------------------
mlx5-updates-2022-03-09

1) Remove kernel log prints on FW events regarding FW pages management
   and replace that with debugfs entries to track FW pages management commands
   failures and general stats, we do that for all FW commands in general since
   it's the same effort to do so under the already existing debugfs entry for
   FW commands.

2) Add support for ConnectX-7 Software managed steering, in other words STEv2
   which shares a lot in common with STE V1, the difference is in specific
   offsets in the devices, the logic is almost the same, thus we implement
   STEv1 and STEv2 in the same file.

----------------------------------------------------------------
Dan Carpenter (1):
      net/mlx5e: TC, Fix use after free in mlx5e_clone_flow_attr_for_post_act()

Moshe Shemesh (8):
      net/mlx5: Add command failures data to debugfs
      net/mlx5: Remove redundant notify fail on give pages
      net/mlx5: Remove redundant error on give pages
      net/mlx5: Remove redundant error on reclaim pages
      net/mlx5: Change release_all_pages cap bit location
      net/mlx5: Move debugfs entries to separate struct
      net/mlx5: Add pages debugfs
      net/mlx5: Add debugfs counters for page commands failures

Shun Hao (1):
      net/mlx5: DR, Align mlx5dv_dr API vport action with FW behavior

Yevgeny Kliteynik (6):
      net/mlx5: DR, Add support for matching on Internet Header Length (IHL)
      net/mlx5: DR, Remove unneeded comments
      net/mlx5: DR, Fix handling of different actions on the same STE in STEv1
      net/mlx5: DR, Rename action modify fields to reflect naming in HW spec
      net/mlx5: DR, Refactor ste_ctx handling for STE v0/1
      net/mlx5: DR, Add support for ConnectX-7 steering

 drivers/infiniband/hw/mlx5/cong.c                  |   3 +-
 drivers/infiniband/hw/mlx5/main.c                  |   2 +-
 drivers/infiniband/hw/mlx5/mr.c                    |   2 +-
 drivers/net/ethernet/mellanox/mlx5/core/Makefile   |   1 +
 drivers/net/ethernet/mellanox/mlx5/core/cmd.c      |  46 +++-
 drivers/net/ethernet/mellanox/mlx5/core/debugfs.c  |  58 ++++-
 drivers/net/ethernet/mellanox/mlx5/core/en_tc.c    |   2 +-
 drivers/net/ethernet/mellanox/mlx5/core/main.c     |   8 +-
 .../net/ethernet/mellanox/mlx5/core/pagealloc.c    |  40 +++-
 .../mellanox/mlx5/core/steering/dr_action.c        |  12 +-
 .../ethernet/mellanox/mlx5/core/steering/dr_dbg.c  |   2 +-
 .../mellanox/mlx5/core/steering/dr_domain.c        |   2 +-
 .../mellanox/mlx5/core/steering/dr_matcher.c       |  19 +-
 .../ethernet/mellanox/mlx5/core/steering/dr_ste.c  |  24 +-
 .../ethernet/mellanox/mlx5/core/steering/dr_ste.h  |   7 +-
 .../mellanox/mlx5/core/steering/dr_ste_v0.c        |  10 +-
 .../mellanox/mlx5/core/steering/dr_ste_v1.c        | 253 +++++++++++----------
 .../mellanox/mlx5/core/steering/dr_ste_v1.h        |  94 ++++++++
 .../mellanox/mlx5/core/steering/dr_ste_v2.c        | 231 +++++++++++++++++++
 .../mellanox/mlx5/core/steering/dr_types.h         |   5 +-
 .../ethernet/mellanox/mlx5/core/steering/fs_dr.c   |   2 +-
 .../ethernet/mellanox/mlx5/core/steering/mlx5dr.h  |   2 +-
 include/linux/mlx5/driver.h                        |  38 +++-
 include/linux/mlx5/mlx5_ifc.h                      |   9 +-
 24 files changed, 665 insertions(+), 207 deletions(-)
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/steering/dr_ste_v1.h
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/steering/dr_ste_v2.c

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

end of thread, other threads:[~2022-03-10 22:50 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-09 21:37 [pull request][net-next 00/16] mlx5 updates 2022-03-09 Saeed Mahameed
2022-03-09 21:37 ` [net-next 01/16] net/mlx5e: TC, Fix use after free in mlx5e_clone_flow_attr_for_post_act() Saeed Mahameed
2022-03-10 22:50   ` patchwork-bot+netdevbpf
2022-03-09 21:37 ` [net-next 02/16] net/mlx5: Add command failures data to debugfs Saeed Mahameed
2022-03-09 21:37 ` [net-next 03/16] net/mlx5: Remove redundant notify fail on give pages Saeed Mahameed
2022-03-09 21:37 ` [net-next 04/16] net/mlx5: Remove redundant error " Saeed Mahameed
2022-03-09 21:37 ` [net-next 05/16] net/mlx5: Remove redundant error on reclaim pages Saeed Mahameed
2022-03-09 21:37 ` [net-next 06/16] net/mlx5: Change release_all_pages cap bit location Saeed Mahameed
2022-03-09 21:37 ` [net-next 07/16] net/mlx5: Move debugfs entries to separate struct Saeed Mahameed
2022-03-09 21:37 ` [net-next 08/16] net/mlx5: Add pages debugfs Saeed Mahameed
2022-03-09 21:37 ` [net-next 09/16] net/mlx5: Add debugfs counters for page commands failures Saeed Mahameed
2022-03-09 21:37 ` [net-next 10/16] net/mlx5: DR, Align mlx5dv_dr API vport action with FW behavior Saeed Mahameed
2022-03-09 21:37 ` [net-next 11/16] net/mlx5: DR, Add support for matching on Internet Header Length (IHL) Saeed Mahameed
2022-03-09 21:37 ` [net-next 12/16] net/mlx5: DR, Remove unneeded comments Saeed Mahameed
2022-03-09 21:37 ` [net-next 13/16] net/mlx5: DR, Fix handling of different actions on the same STE in STEv1 Saeed Mahameed
2022-03-09 21:37 ` [net-next 14/16] net/mlx5: DR, Rename action modify fields to reflect naming in HW spec Saeed Mahameed
2022-03-09 21:37 ` [net-next 15/16] net/mlx5: DR, Refactor ste_ctx handling for STE v0/1 Saeed Mahameed
2022-03-09 21:37 ` [net-next 16/16] net/mlx5: DR, Add support for ConnectX-7 steering 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.