[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230111053045.413133-1-saeed@kernel.org>
Date: Tue, 10 Jan 2023 21:30:30 -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-01-10
From: Saeed Mahameed <saeedm@...dia.com>
This series provides 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 a6f536063b69102adf3588fbc0bb4f08d6c8cb82:
qed: fix a typo in comment (2023-01-10 18:13:22 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2023-01-10
for you to fetch changes up to 96c31b5b2caecae2eebb1ed0fba5dc082b2fb740:
net/mlx5e: Use kzalloc() in mlx5e_accel_fs_tcp_create() (2023-01-10 21:24:43 -0800)
----------------------------------------------------------------
mlx5-updates-2023-01-10
1) From Gal: Add debugfs entries for netdev nic driver
- ktls, flow steering and hairpin info
- useful for debug and performance analysis
- e.g hairpin queue attributes, dump ktls tx pool size, etc
2) From Maher: Update shared buffer configuration on PFC commands
2.1) For every change of buffer's headroom, recalculate the size of shared
buffer to be equal to "total_buffer_size" - "new_headroom_size".
The new shared buffer size will be split in ratio of 3:1 between
lossy and lossless pools, respectively.
2.2) For each port buffer change, count the number of lossless buffers.
If there is only one lossless buffer, then set its lossless pool
usage threshold to be infinite. Otherwise, if there is more than
one lossless buffer, set a usage threshold for each lossless buffer.
While at it, add more verbosity to debug prints when handling user
commands, to assist in future debug.
3) From Tariq: Throttle high rate FW commands
4) From Shay: Properly initialize management PF
5) Various cleanup patches
----------------------------------------------------------------
Gal Pressman (4):
net/mlx5e: Add Ethernet driver debugfs
net/mlx5e: Add hairpin params structure
net/mlx5e: Add flow steering debugfs directory
net/mlx5e: Add hairpin debugfs files
Gustavo A. R. Silva (1):
net/mlx5e: Replace zero-length array with flexible-array member
Kees Cook (1):
net/mlx5e: Replace 0-length array with flexible array
Maher Sanalla (3):
net/mlx5: Expose shared buffer registers bits and structs
net/mlx5e: Add API to query/modify SBPR and SBCM registers
net/mlx5e: Update shared buffer along with device buffer changes
Shay Drory (1):
net/mlx5: Enable management PF initialization
Tariq Toukan (3):
net/mlx5e: kTLS, Add debugfs
net/mlx5: Introduce and use opcode getter in command interface
net/mlx5: Prevent high-rate FW commands from populating all slots
YueHaibing (1):
net/mlx5e: Use kzalloc() in mlx5e_accel_fs_tcp_create()
zhang songyi (1):
net/mlx5: remove redundant ret variable
drivers/net/ethernet/mellanox/mlx5/core/cmd.c | 118 ++++++-----
drivers/net/ethernet/mellanox/mlx5/core/dev.c | 6 +
drivers/net/ethernet/mellanox/mlx5/core/ecpf.c | 8 +
drivers/net/ethernet/mellanox/mlx5/core/en.h | 3 +-
drivers/net/ethernet/mellanox/mlx5/core/en/fs.h | 5 +-
drivers/net/ethernet/mellanox/mlx5/core/en/port.c | 72 +++++++
drivers/net/ethernet/mellanox/mlx5/core/en/port.h | 6 +
.../ethernet/mellanox/mlx5/core/en/port_buffer.c | 222 ++++++++++++++++++++-
.../ethernet/mellanox/mlx5/core/en/port_buffer.h | 1 +
.../net/ethernet/mellanox/mlx5/core/en/tc/meter.c | 2 +-
.../ethernet/mellanox/mlx5/core/en_accel/fs_tcp.c | 6 +-
.../ethernet/mellanox/mlx5/core/en_accel/ktls.c | 22 ++
.../ethernet/mellanox/mlx5/core/en_accel/ktls.h | 8 +
.../ethernet/mellanox/mlx5/core/en_accel/ktls_tx.c | 22 ++
drivers/net/ethernet/mellanox/mlx5/core/en_fs.c | 22 +-
drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 9 +-
drivers/net/ethernet/mellanox/mlx5/core/en_rep.c | 9 +-
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c | 169 ++++++++++++++--
drivers/net/ethernet/mellanox/mlx5/core/eswitch.c | 2 +-
.../net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c | 3 +-
.../ethernet/mellanox/mlx5/core/steering/dr_send.c | 5 +-
include/linux/mlx5/driver.h | 8 +
include/linux/mlx5/mlx5_ifc.h | 61 ++++++
23 files changed, 706 insertions(+), 83 deletions(-)
Powered by blists - more mailing lists