netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [pull request][net-next 00/15] mlx5 updates 2023-04-05
@ 2023-04-06  2:02 Saeed Mahameed
  2023-04-06  2:02 ` [net-next 01/15] net/mlx5e: Set default can_offload action Saeed Mahameed
                   ` (14 more replies)
  0 siblings, 15 replies; 17+ messages in thread
From: Saeed Mahameed @ 2023-04-06  2:02 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 misc updates to mlx5 driver.
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 8b0f256530d97f2a2310c4f8336ea2c477c8e6c4:

  net/sched: sch_mqprio: use netlink payload helpers (2023-04-05 18:12:55 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2023-04-05

for you to fetch changes up to b0d87ed27be7853af8f897c3cfcb9ddc5179a2a3:

  net/mlx5e: Fix SQ SW state layout in SQ devlink health diagnostics (2023-04-05 18:57:34 -0700)

----------------------------------------------------------------
mlx5-updates-2023-04-05

From Paul:
 - TC action parsing cleanups
 - Correctly report stats for missed packets
 - Many CT actions limitations removed due to hw misses will now
   continue from the relevant tc ct action in software.

From Adham:
 - RQ/SQ devlink health diagnostics layout fixes

From Gal And Rahul:
 - PTP code cleanup and cyclecounter shift value improvement

----------------------------------------------------------------
Adham Faris (2):
      net/mlx5e: Fix RQ SW state layout in RQ devlink health diagnostics
      net/mlx5e: Fix SQ SW state layout in SQ devlink health diagnostics

Emeel Hakim (1):
      net/mlx5e: Remove redundant macsec code

Gal Pressman (1):
      net/mlx5e: Rename misleading skb_pc/cc references in ptp code

Paul Blakey (10):
      net/mlx5e: Set default can_offload action
      net/mlx5e: TC, Remove unused vf_tun variable
      net/mlx5e: TC, Move main flow attribute cleanup to helper func
      net/mlx5e: CT: Use per action stats
      net/mlx5e: TC, Remove CT action reordering
      net/mlx5e: TC, Remove special handling of CT action
      net/mlx5e: TC, Remove multiple ct actions limitation
      net/mlx5e: TC, Remove tuple rewrite and ct limitation
      net/mlx5e: TC, Remove mirror and ct limitation
      net/mlx5e: TC, Remove sample and ct limitation

Rahul Rameshbabu (1):
      net/mlx5: Update cyclecounter shift value to improve ptp free running mode precision

 drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c   |  22 +-
 .../ethernet/mellanox/mlx5/core/en/reporter_rx.c   |  10 +-
 .../ethernet/mellanox/mlx5/core/en/reporter_tx.c   |  10 +-
 .../ethernet/mellanox/mlx5/core/en/tc/act/accept.c |  10 -
 .../ethernet/mellanox/mlx5/core/en/tc/act/act.c    |  20 --
 .../ethernet/mellanox/mlx5/core/en/tc/act/act.h    |   8 +-
 .../net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c |  66 +----
 .../ethernet/mellanox/mlx5/core/en/tc/act/drop.c   |  10 -
 .../ethernet/mellanox/mlx5/core/en/tc/act/pedit.c  |  10 -
 .../ethernet/mellanox/mlx5/core/en/tc/act/ptype.c  |  10 -
 .../ethernet/mellanox/mlx5/core/en/tc/act/sample.c |  20 --
 .../ethernet/mellanox/mlx5/core/en/tc/act/trap.c   |  10 -
 .../ethernet/mellanox/mlx5/core/en/tc/act/tun.c    |  10 -
 .../ethernet/mellanox/mlx5/core/en/tc/act/vlan.c   |  10 -
 .../mellanox/mlx5/core/en/tc/act/vlan_mangle.c     |  10 -
 drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c | 169 +++----------
 drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.h |  31 +--
 .../net/ethernet/mellanox/mlx5/core/en/tc_priv.h   |  11 +-
 .../mellanox/mlx5/core/en_accel/macsec_fs.c        |   5 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_tc.c    | 279 ++++++---------------
 .../net/ethernet/mellanox/mlx5/core/lib/clock.c    |   2 +-
 21 files changed, 159 insertions(+), 574 deletions(-)

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

end of thread, other threads:[~2023-04-07  2:20 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-06  2:02 [pull request][net-next 00/15] mlx5 updates 2023-04-05 Saeed Mahameed
2023-04-06  2:02 ` [net-next 01/15] net/mlx5e: Set default can_offload action Saeed Mahameed
2023-04-07  2:20   ` patchwork-bot+netdevbpf
2023-04-06  2:02 ` [net-next 02/15] net/mlx5e: TC, Remove unused vf_tun variable Saeed Mahameed
2023-04-06  2:02 ` [net-next 03/15] net/mlx5e: TC, Move main flow attribute cleanup to helper func Saeed Mahameed
2023-04-06  2:02 ` [net-next 04/15] net/mlx5e: CT: Use per action stats Saeed Mahameed
2023-04-06  2:02 ` [net-next 05/15] net/mlx5e: TC, Remove CT action reordering Saeed Mahameed
2023-04-06  2:02 ` [net-next 06/15] net/mlx5e: TC, Remove special handling of CT action Saeed Mahameed
2023-04-06  2:02 ` [net-next 07/15] net/mlx5e: TC, Remove multiple ct actions limitation Saeed Mahameed
2023-04-06  2:02 ` [net-next 08/15] net/mlx5e: TC, Remove tuple rewrite and ct limitation Saeed Mahameed
2023-04-06  2:02 ` [net-next 09/15] net/mlx5e: TC, Remove mirror " Saeed Mahameed
2023-04-06  2:02 ` [net-next 10/15] net/mlx5e: TC, Remove sample " Saeed Mahameed
2023-04-06  2:02 ` [net-next 11/15] net/mlx5e: Remove redundant macsec code Saeed Mahameed
2023-04-06  2:02 ` [net-next 12/15] net/mlx5: Update cyclecounter shift value to improve ptp free running mode precision Saeed Mahameed
2023-04-06  2:02 ` [net-next 13/15] net/mlx5e: Rename misleading skb_pc/cc references in ptp code Saeed Mahameed
2023-04-06  2:02 ` [net-next 14/15] net/mlx5e: Fix RQ SW state layout in RQ devlink health diagnostics Saeed Mahameed
2023-04-06  2:02 ` [net-next 15/15] net/mlx5e: Fix SQ SW state layout in SQ " 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).