From: Saeed Mahameed <saeed@kernel.org>
To: "David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org, Saeed Mahameed <saeedm@nvidia.com>
Subject: [pull request][net-next 00/14] mlx5 updates 2021-10-25
Date: Mon, 25 Oct 2021 13:54:17 -0700 [thread overview]
Message-ID: <20211025205431.365080-1-saeed@kernel.org> (raw)
From: Saeed Mahameed <saeedm@nvidia.com>
Hi Dave and Jakub,
This series provides some 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 dcd63d4326802cec525de2a4775019849958125c:
Merge branch 'bluetooth-don-t-write-directly-to-netdev-dev_addr' (2021-10-25 11:01:33 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2021-10-25
for you to fetch changes up to d67ab0a8c130be38b6dda8da3616a97f020ac424:
net/mlx5: SF_DEV Add SF device trace points (2021-10-25 13:51:21 -0700)
----------------------------------------------------------------
mlx5-updates-2021-10-25
Misc updates for mlx5 driver:
1) Misc updates and cleanups:
- Don't write directly to netdev->dev_addr, From Jakub Kicinski
- Remove unnecessary checks for slow path flag in tc module
- Fix unused function warning of mlx5i_flow_type_mask
- Bridge, support replacing existing FDB entry
2) Sub Functions, Reduction in memory usage:
- Reduce flow counters bulk query buffer size
- Implement max_macs devlink parameter
- Add devlink vendor params to control Event Queue sizes
- Added SF life cycle trace points by Parav
3) From Aya, Firmware health buffer reporting improvements
- Print health buffer by log level and more missing information
- Periodic update of host time to firmware
----------------------------------------------------------------
Avihai Horon (1):
net/mlx5: Reduce flow counters bulk query buffer size for SFs
Aya Levin (3):
net/mlx5: Extend health buffer dump
net/mlx5: Print health buffer by log level
net/mlx5: Add periodic update of host time to firmware
Jakub Kicinski (1):
net/mlx5e: don't write directly to netdev->dev_addr
Parav Pandit (2):
net/mlx5: SF, Add SF trace points
net/mlx5: SF_DEV Add SF device trace points
Paul Blakey (1):
net/mlx5: Remove unnecessary checks for slow path flag
Shay Drory (4):
net/mlx5: Fix unused function warning of mlx5i_flow_type_mask
net/mlx5: Let user configure io_eq_size param
net/mlx5: Let user configure event_eq_size param
net/mlx5: Let user configure max_macs param
Vlad Buslov (2):
net/mlx5: Bridge, extract code to lookup and del/notify entry
net/mlx5: Bridge, support replacing existing FDB entry
.../device_drivers/ethernet/mellanox/mlx5.rst | 60 +++++++
Documentation/networking/devlink/mlx5.rst | 20 +++
drivers/net/ethernet/mellanox/mlx5/core/Makefile | 2 +-
drivers/net/ethernet/mellanox/mlx5/core/devlink.c | 69 ++++++++
drivers/net/ethernet/mellanox/mlx5/core/devlink.h | 12 ++
.../net/ethernet/mellanox/mlx5/core/devlink_res.c | 80 ++++++++++
.../net/ethernet/mellanox/mlx5/core/en/tc/sample.c | 17 +-
drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 8 +-
drivers/net/ethernet/mellanox/mlx5/core/eq.c | 5 +-
.../net/ethernet/mellanox/mlx5/core/esw/bridge.c | 62 ++++----
.../net/ethernet/mellanox/mlx5/core/fs_counters.c | 9 +-
drivers/net/ethernet/mellanox/mlx5/core/health.c | 126 ++++++++++++---
.../ethernet/mellanox/mlx5/core/ipoib/ethtool.c | 10 +-
drivers/net/ethernet/mellanox/mlx5/core/main.c | 21 +++
.../net/ethernet/mellanox/mlx5/core/mlx5_core.h | 24 +++
.../net/ethernet/mellanox/mlx5/core/sf/dev/dev.c | 23 ++-
.../net/ethernet/mellanox/mlx5/core/sf/dev/dev.h | 1 +
.../mlx5/core/sf/dev/diag/dev_tracepoint.h | 58 +++++++
.../net/ethernet/mellanox/mlx5/core/sf/devlink.c | 8 +
.../mellanox/mlx5/core/sf/diag/sf_tracepoint.h | 173 +++++++++++++++++++++
.../mellanox/mlx5/core/sf/diag/vhca_tracepoint.h | 40 +++++
.../net/ethernet/mellanox/mlx5/core/sf/hw_table.c | 4 +
.../ethernet/mellanox/mlx5/core/sf/vhca_event.c | 3 +
include/linux/mlx5/device.h | 14 +-
include/linux/mlx5/driver.h | 6 +-
include/linux/mlx5/eq.h | 1 -
include/linux/mlx5/mlx5_ifc.h | 24 ++-
27 files changed, 787 insertions(+), 93 deletions(-)
create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/devlink_res.c
create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/sf/dev/diag/dev_tracepoint.h
create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/sf/diag/sf_tracepoint.h
create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/sf/diag/vhca_tracepoint.h
next reply other threads:[~2021-10-25 20:54 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-25 20:54 Saeed Mahameed [this message]
2021-10-25 20:54 ` [net-next 01/14] net/mlx5e: don't write directly to netdev->dev_addr Saeed Mahameed
2021-10-26 12:30 ` patchwork-bot+netdevbpf
2021-10-25 20:54 ` [net-next 02/14] net/mlx5: Remove unnecessary checks for slow path flag Saeed Mahameed
2021-10-25 20:54 ` [net-next 03/14] net/mlx5: Fix unused function warning of mlx5i_flow_type_mask Saeed Mahameed
2021-10-25 20:54 ` [net-next 04/14] net/mlx5: Reduce flow counters bulk query buffer size for SFs Saeed Mahameed
2021-10-25 20:54 ` [net-next 05/14] net/mlx5: Extend health buffer dump Saeed Mahameed
2021-10-25 20:54 ` [net-next 06/14] net/mlx5: Print health buffer by log level Saeed Mahameed
2021-10-25 20:54 ` [net-next 07/14] net/mlx5: Add periodic update of host time to firmware Saeed Mahameed
2021-10-25 20:54 ` [net-next 08/14] net/mlx5: Bridge, extract code to lookup and del/notify entry Saeed Mahameed
2021-10-25 20:54 ` [net-next 09/14] net/mlx5: Bridge, support replacing existing FDB entry Saeed Mahameed
2021-10-25 20:54 ` [net-next 10/14] net/mlx5: Let user configure io_eq_size param Saeed Mahameed
2021-10-26 15:05 ` Jakub Kicinski
2021-10-26 15:54 ` Saeed Mahameed
2021-10-26 17:16 ` Jakub Kicinski
2021-10-26 18:01 ` Saeed Mahameed
2021-10-27 6:16 ` Gal Pressman
2021-10-25 20:54 ` [net-next 11/14] net/mlx5: Let user configure event_eq_size param Saeed Mahameed
2021-10-25 20:54 ` [net-next 12/14] net/mlx5: Let user configure max_macs param Saeed Mahameed
2021-10-25 20:54 ` [net-next 13/14] net/mlx5: SF, Add SF trace points Saeed Mahameed
2021-10-25 20:54 ` [net-next 14/14] net/mlx5: SF_DEV Add SF device " Saeed Mahameed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211025205431.365080-1-saeed@kernel.org \
--to=saeed@kernel.org \
--cc=davem@davemloft.net \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=saeedm@nvidia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).