lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Sat,  4 Feb 2023 02:08:39 -0800
From:   Saeed Mahameed <saeed@...nel.org>
To:     "David S. Miller" <davem@...emloft.net>,
        Jakub Kicinski <kuba@...nel.org>,
        Paolo Abeni <pabeni@...hat.com>,
        Eric Dumazet <edumazet@...gle.com>
Cc:     Saeed Mahameed <saeedm@...dia.com>, netdev@...r.kernel.org,
        Tariq Toukan <tariqt@...dia.com>
Subject: [pull request][net-next 00/15] mlx5 updates 2023-02-04

From: Saeed Mahameed <saeedm@...dia.com>

This series adds misc updates to mlx5.
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 042b7858d50f33af1f3569ad23f23afd5234b0f6:

  Merge branch 'net-smc-parallelism' (2023-02-04 09:48:19 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 79efecb41f58430454cbb5809fa7b3135150da6d:

  net/mlx5e: Trigger NAPI after activating an SQ (2023-02-04 02:07:04 -0800)

----------------------------------------------------------------
mlx5-updates-2023-02-04

This series provides misc updates to mlx5 driver:

1) Trivial LAG code cleanup patches from Roi

2) Rahul improves mlx5's documentation structure
Separates the documentation into multiple pages related to different
components in the device driver. Adds Kconfig parameters, devlink
parameters, and tracepoints that were previously introduced but not added
to the documentation. Introduces a new page on ethtool statistics counters
with information about counters previously implemented in the mlx5_core
driver but not documented in the kernel tree.

3) From Raed, policy/state selector support for IPSec.

4) From Fragos, add support for XDR speed in IPoIB mlx5 netdev

5) Few more misc cleanups and trivial changes

----------------------------------------------------------------
Dragos Tatulea (1):
      net/mlx5e: IPoIB, Add support for XDR speed

Jack Morgenstein (1):
      net/mlx5: Enhance debug print in page allocation failure

Mark Bloch (1):
      net/mlx5: Lag, Use flag to check for shared FDB mode

Maxim Mikityanskiy (1):
      net/mlx5e: Trigger NAPI after activating an SQ

Raed Salem (1):
      net/mlx5e: IPsec, support upper protocol selector field offload

Rahul Rameshbabu (6):
      net/mlx5: Separate mlx5 driver documentation into multiple pages
      net/mlx5: Update Kconfig parameter documentation
      net/mlx5: Document previously implemented mlx5 tracepoints
      net/mlx5: Add counter information to mlx5 driver documentation
      net/mlx5: Document support for RoCE HCA disablement capability
      net/mlx5: Add firmware support for MTUTC scaled_ppm frequency adjustments

Roi Dayan (4):
      net/mlx5: Lag, Update multiport eswitch check to log an error
      net/mlx5: Lag, Use mlx5_lag_dev() instead of derefering pointers
      net/mlx5: Lag, Remove redundant bool allocation on the stack
      net/mlx5: Lag, Move mpesw related definitions to mpesw.h

 .../networking/device_drivers/ethernet/index.rst   |    2 +-
 .../device_drivers/ethernet/mellanox/mlx5.rst      |  746 -----------
 .../ethernet/mellanox/mlx5/counters.rst            | 1302 ++++++++++++++++++++
 .../ethernet/mellanox/mlx5/devlink.rst             |  224 ++++
 .../ethernet/mellanox/mlx5/index.rst               |   26 +
 .../ethernet/mellanox/mlx5/kconfig.rst             |  168 +++
 .../ethernet/mellanox/mlx5/switchdev.rst           |  239 ++++
 .../ethernet/mellanox/mlx5/tracepoints.rst         |  229 ++++
 drivers/net/ethernet/mellanox/mlx5/core/en.h       |    1 +
 drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c   |    2 +-
 .../ethernet/mellanox/mlx5/core/en/reporter_tx.c   |    4 +
 .../ethernet/mellanox/mlx5/core/en/tc/act/mirred.c |    6 +-
 .../ethernet/mellanox/mlx5/core/en_accel/ipsec.c   |   23 +
 .../ethernet/mellanox/mlx5/core/en_accel/ipsec.h   |   10 +
 .../mellanox/mlx5/core/en_accel/ipsec_fs.c         |   23 +
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  |   15 +-
 .../ethernet/mellanox/mlx5/core/ipoib/ethtool.c    |    2 +
 .../net/ethernet/mellanox/mlx5/core/lag/debugfs.c  |   12 +-
 drivers/net/ethernet/mellanox/mlx5/core/lag/lag.c  |    5 +-
 drivers/net/ethernet/mellanox/mlx5/core/lag/lag.h  |   15 -
 drivers/net/ethernet/mellanox/mlx5/core/lag/mp.c   |    8 +-
 .../net/ethernet/mellanox/mlx5/core/lag/mpesw.c    |   20 +-
 .../net/ethernet/mellanox/mlx5/core/lag/mpesw.h    |   19 +-
 .../net/ethernet/mellanox/mlx5/core/lib/clock.c    |   15 +-
 .../net/ethernet/mellanox/mlx5/core/pagealloc.c    |    3 +-
 include/linux/mlx5/mlx5_ifc.h                      |   12 +-
 26 files changed, 2328 insertions(+), 803 deletions(-)
 delete mode 100644 Documentation/networking/device_drivers/ethernet/mellanox/mlx5.rst
 create mode 100644 Documentation/networking/device_drivers/ethernet/mellanox/mlx5/counters.rst
 create mode 100644 Documentation/networking/device_drivers/ethernet/mellanox/mlx5/devlink.rst
 create mode 100644 Documentation/networking/device_drivers/ethernet/mellanox/mlx5/index.rst
 create mode 100644 Documentation/networking/device_drivers/ethernet/mellanox/mlx5/kconfig.rst
 create mode 100644 Documentation/networking/device_drivers/ethernet/mellanox/mlx5/switchdev.rst
 create mode 100644 Documentation/networking/device_drivers/ethernet/mellanox/mlx5/tracepoints.rst

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ