From: Saeed Mahameed <saeed@kernel•org>
To: "David S. Miller" <davem@davemloft•net>,
Jakub Kicinski <kuba@kernel•org>, Paolo Abeni <pabeni@redhat•com>,
Eric Dumazet <edumazet@google•com>
Cc: Saeed Mahameed <saeedm@nvidia•com>,
netdev@vger•kernel.org, Tariq Toukan <tariqt@nvidia•com>
Subject: [pull request][net-next 00/15] mlx5 updates 2022-11-29
Date: Tue, 29 Nov 2022 21:11:37 -0800 [thread overview]
Message-ID: <20221130051152.479480-1-saeed@kernel.org> (raw)
From: Saeed Mahameed <saeedm@nvidia•com>
This PR 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 5cb0c51fe366cf96b7911d25db3e678401732246:
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next (2022-11-29 20:50:51 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2022-11-29
for you to fetch changes up to 953d771587e232e537665d34086a94ed29b89e5f:
net/mlx5e: Support devlink reload of IPsec core (2022-11-29 21:09:49 -0800)
----------------------------------------------------------------
mlx5-updates-2022-11-29
Misc update for mlx5 driver
1) Various trivial cleanups
2) Maor Dickman, Adds support for trap offload with additional actions
3) From Tariq, UMR (device memory registrations) cleanups,
UMR WQE must be aligned to 64B per device spec, (not a bug fix).
----------------------------------------------------------------
Christophe JAILLET (1):
net/mlx5e: Remove unneeded io-mapping.h #include
Gustavo A. R. Silva (1):
net/mlx5e: Replace zero-length arrays with DECLARE_FLEX_ARRAY() helper
Leon Romanovsky (4):
net/mlx5e: Don't access directly DMA device pointer
net/mlx5e: Delete always true DMA check
net/mlx5: Remove redundant check
net/mlx5e: Support devlink reload of IPsec core
Maor Dickman (1):
net/mlx5e: TC, Add offload support for trap with additional actions
Petr Pavlu (1):
net/mlx5: Remove unused ctx variables
Rahul Rameshbabu (1):
net/mlx5: Fix orthography errors in documentation
Roi Dayan (2):
net/mlx5e: Don't use termination table when redundant
net/mlx5e: Do early return when setup vports dests for slow path flow
Tariq Toukan (4):
net/mlx5e: Add padding when needed in UMR WQEs
net/mlx5: Remove unused UMR MTT definitions
net/mlx5: Generalize name of UMR alignment definition
net/mlx5: Use generic definition for UMR KLM alignment
.../device_drivers/ethernet/mellanox/mlx5.rst | 82 +++++++++++-----------
drivers/infiniband/hw/mlx5/odp.c | 3 +-
drivers/infiniband/hw/mlx5/umr.c | 14 ++--
drivers/net/ethernet/mellanox/mlx5/core/cmd.c | 1 -
drivers/net/ethernet/mellanox/mlx5/core/en.h | 8 +--
.../net/ethernet/mellanox/mlx5/core/en/params.c | 4 +-
.../ethernet/mellanox/mlx5/core/en/tc/act/trap.c | 10 +--
.../ethernet/mellanox/mlx5/core/en_accel/ipsec.c | 17 +++--
.../ethernet/mellanox/mlx5/core/en_accel/ipsec.h | 5 +-
.../ethernet/mellanox/mlx5/core/en_accel/macsec.c | 12 ++--
drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 9 +--
drivers/net/ethernet/mellanox/mlx5/core/en_rep.c | 10 ++-
drivers/net/ethernet/mellanox/mlx5/core/en_rx.c | 21 ++++--
drivers/net/ethernet/mellanox/mlx5/core/en_tc.h | 4 +-
drivers/net/ethernet/mellanox/mlx5/core/eswitch.h | 5 ++
.../ethernet/mellanox/mlx5/core/eswitch_offloads.c | 35 ++++-----
.../mellanox/mlx5/core/eswitch_offloads_termtbl.c | 32 +++++++--
drivers/net/ethernet/mellanox/mlx5/core/lib/aso.c | 3 -
drivers/net/ethernet/mellanox/mlx5/core/main.c | 3 -
drivers/net/ethernet/mellanox/mlx5/core/uar.c | 1 -
include/linux/mlx5/device.h | 7 +-
include/linux/mlx5/driver.h | 2 -
22 files changed, 153 insertions(+), 135 deletions(-)
next reply other threads:[~2022-11-30 5:12 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-30 5:11 Saeed Mahameed [this message]
2022-11-30 5:11 ` [net-next 01/15] net/mlx5e: Remove unneeded io-mapping.h #include Saeed Mahameed
2022-12-01 6:40 ` patchwork-bot+netdevbpf
2022-11-30 5:11 ` [net-next 02/15] net/mlx5e: Replace zero-length arrays with DECLARE_FLEX_ARRAY() helper Saeed Mahameed
2022-11-30 5:11 ` [net-next 03/15] net/mlx5: Remove unused ctx variables Saeed Mahameed
2022-11-30 5:11 ` [net-next 04/15] net/mlx5e: Add padding when needed in UMR WQEs Saeed Mahameed
2022-11-30 5:11 ` [net-next 05/15] net/mlx5: Remove unused UMR MTT definitions Saeed Mahameed
2022-11-30 5:11 ` [net-next 06/15] net/mlx5: Generalize name of UMR alignment definition Saeed Mahameed
2022-11-30 5:11 ` [net-next 07/15] net/mlx5: Use generic definition for UMR KLM alignment Saeed Mahameed
2022-11-30 5:11 ` [net-next 08/15] net/mlx5: Fix orthography errors in documentation Saeed Mahameed
2022-11-30 5:11 ` [net-next 09/15] net/mlx5e: Don't use termination table when redundant Saeed Mahameed
2022-11-30 5:11 ` [net-next 10/15] net/mlx5e: Don't access directly DMA device pointer Saeed Mahameed
2022-11-30 5:11 ` [net-next 11/15] net/mlx5e: Delete always true DMA check Saeed Mahameed
2022-11-30 5:11 ` [net-next 12/15] net/mlx5: Remove redundant check Saeed Mahameed
2022-11-30 5:11 ` [net-next 13/15] net/mlx5e: Do early return when setup vports dests for slow path flow Saeed Mahameed
2022-11-30 5:11 ` [net-next 14/15] net/mlx5e: TC, Add offload support for trap with additional actions Saeed Mahameed
2022-11-30 5:11 ` [net-next 15/15] net/mlx5e: Support devlink reload of IPsec core 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=20221130051152.479480-1-saeed@kernel.org \
--to=saeed@kernel$(echo .)org \
--cc=davem@davemloft$(echo .)net \
--cc=edumazet@google$(echo .)com \
--cc=kuba@kernel$(echo .)org \
--cc=netdev@vger$(echo .)kernel.org \
--cc=pabeni@redhat$(echo .)com \
--cc=saeedm@nvidia$(echo .)com \
--cc=tariqt@nvidia$(echo .)com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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