netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [pull request][net-next 00/15] Mellanox, mlx5 updates 2019-11-01
@ 2019-11-01 21:58 Saeed Mahameed
  2019-11-01 21:58 ` [net-next 01/15] net/mlx5: DR, Replace CRC32 implementation to use kernel lib Saeed Mahameed
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Saeed Mahameed @ 2019-11-01 21:58 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, Saeed Mahameed

Hi Dave,

This series adds misc updates to mlx5 core and netdev 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 52340b82cf1a9c8d466b6e36a0881bc44174b969:

  hp100: Move 100BaseVG AnyLAN driver to staging (2019-10-31 14:49:52 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2019-11-01

for you to fetch changes up to 667f264676c7f83f57a7695010f889d6fd36dcbf:

  net/mlx5: DR, Support IPv4 and IPv6 mixed matcher (2019-11-01 14:55:18 -0700)

----------------------------------------------------------------
mlx5-updates-2019-11-01

Misc updates for mlx5 netdev and core driver

1) Steering Core: Replace CRC32 internal implementation with standard
   kernel lib.
2) Steering Core: Support IPv4 and IPv6 mixed matcher.
3) Steering Core: Lockless FTE read lookups
4) TC: Bit sized fields rewrite support.
5) FPGA: Standalone FPGA support.
6) SRIOV: Reset VF parameters configurations on SRIOV disable.
7) netdev: Dump WQs wqe descriptors on CQE with error events.
8) MISC Cleanups.

----------------------------------------------------------------
Alex Vesker (1):
      net/mlx5: DR, Support IPv4 and IPv6 mixed matcher

Aya Levin (1):
      net/mlx5: Clear VF's configuration on disabling SRIOV

Dmytro Linkin (2):
      net/mlx5e: Bit sized fields rewrite support
      net/mlx5e: Add ToS (DSCP) header rewrite support

Erez Alfasi (2):
      net/mlx5: LAG, Use port enumerators
      net/mlx5: LAG, Use affinity type enumerators

Hamdan Igbaria (1):
      net/mlx5: DR, Replace CRC32 implementation to use kernel lib

Igor Leshenko (1):
      net/mlx5: FPGA, support network cards with standalone FPGA

Li RongQing (1):
      net/mlx5: rate limit alloc_ent error messages

Parav Pandit (2):
      net/mlx5: Do not hold group lock while allocating FTE in software
      net/mlx5: Support lockless FTE read lookups

Saeed Mahameed (1):
      net/mlx5e: TX, Dump WQs wqe descriptors on CQE with error events

Tariq Toukan (1):
      net/mlx5: WQ, Move short getters into header file

Vlad Buslov (1):
      net/mlx5e: Verify that rule has at least one fwd/drop action

zhong jiang (1):
      net/mlx5: Remove unneeded variable in mlx5_unload_one

 drivers/net/ethernet/mellanox/mlx5/core/Makefile   |   2 +-
 drivers/net/ethernet/mellanox/mlx5/core/cmd.c      |   2 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_tc.c    | 129 +++++++++++----------
 drivers/net/ethernet/mellanox/mlx5/core/en_tx.c    |   6 +
 drivers/net/ethernet/mellanox/mlx5/core/eswitch.c  |  13 ++-
 drivers/net/ethernet/mellanox/mlx5/core/eswitch.h  |   4 +-
 .../ethernet/mellanox/mlx5/core/eswitch_offloads.c |   4 +-
 drivers/net/ethernet/mellanox/mlx5/core/fpga/cmd.h |  10 +-
 .../net/ethernet/mellanox/mlx5/core/fpga/core.c    |  61 ++++++----
 drivers/net/ethernet/mellanox/mlx5/core/fs_core.c  |  89 ++++++++++----
 drivers/net/ethernet/mellanox/mlx5/core/fs_core.h  |   1 +
 drivers/net/ethernet/mellanox/mlx5/core/lag.c      |  65 ++++++-----
 drivers/net/ethernet/mellanox/mlx5/core/lag.h      |   5 +
 drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c   |  69 +++++------
 drivers/net/ethernet/mellanox/mlx5/core/lag_mp.h   |   6 +
 drivers/net/ethernet/mellanox/mlx5/core/main.c     |   4 +-
 drivers/net/ethernet/mellanox/mlx5/core/sriov.c    |  10 +-
 .../mellanox/mlx5/core/steering/dr_crc32.c         |  98 ----------------
 .../mellanox/mlx5/core/steering/dr_domain.c        |   3 -
 .../mellanox/mlx5/core/steering/dr_matcher.c       |  65 ++++++-----
 .../ethernet/mellanox/mlx5/core/steering/dr_rule.c |  13 ++-
 .../ethernet/mellanox/mlx5/core/steering/dr_ste.c  |  10 +-
 .../mellanox/mlx5/core/steering/dr_types.h         |  20 ++--
 drivers/net/ethernet/mellanox/mlx5/core/wq.c       |  38 +++---
 drivers/net/ethernet/mellanox/mlx5/core/wq.h       |  25 +++-
 25 files changed, 393 insertions(+), 359 deletions(-)
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/steering/dr_crc32.c

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

end of thread, other threads:[~2019-11-04  3:24 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-01 21:58 [pull request][net-next 00/15] Mellanox, mlx5 updates 2019-11-01 Saeed Mahameed
2019-11-01 21:58 ` [net-next 01/15] net/mlx5: DR, Replace CRC32 implementation to use kernel lib Saeed Mahameed
2019-11-01 21:58 ` [net-next 02/15] net/mlx5: FPGA, support network cards with standalone FPGA Saeed Mahameed
2019-11-01 21:59 ` [net-next 03/15] net/mlx5: Remove unneeded variable in mlx5_unload_one Saeed Mahameed
2019-11-01 21:59 ` [net-next 04/15] net/mlx5: Clear VF's configuration on disabling SRIOV Saeed Mahameed
2019-11-01 21:59 ` [net-next 05/15] net/mlx5e: Verify that rule has at least one fwd/drop action Saeed Mahameed
2019-11-01 21:59 ` [net-next 06/15] net/mlx5: Do not hold group lock while allocating FTE in software Saeed Mahameed
2019-11-01 21:59 ` [net-next 07/15] net/mlx5: Support lockless FTE read lookups Saeed Mahameed
2019-11-01 21:59 ` [net-next 08/15] net/mlx5e: TX, Dump WQs wqe descriptors on CQE with error events Saeed Mahameed
2019-11-01 21:59 ` [net-next 09/15] net/mlx5: WQ, Move short getters into header file Saeed Mahameed
2019-11-01 21:59 ` [net-next 10/15] net/mlx5e: Bit sized fields rewrite support Saeed Mahameed
2019-11-01 21:59 ` [net-next 11/15] net/mlx5e: Add ToS (DSCP) header " Saeed Mahameed
2019-11-01 21:59 ` [net-next 12/15] net/mlx5: rate limit alloc_ent error messages Saeed Mahameed
2019-11-01 21:59 ` [net-next 13/15] net/mlx5: LAG, Use port enumerators Saeed Mahameed
2019-11-01 21:59 ` [net-next 14/15] net/mlx5: LAG, Use affinity type enumerators Saeed Mahameed
2019-11-01 21:59 ` [net-next 15/15] net/mlx5: DR, Support IPv4 and IPv6 mixed matcher Saeed Mahameed
2019-11-04  3:24 ` [pull request][net-next 00/15] Mellanox, mlx5 updates 2019-11-01 David Miller

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