From: Saeed Mahameed <saeed@kernel.org>
To: "David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org, Tariq Toukan <tariqt@nvidia.com>,
Saeed Mahameed <saeedm@nvidia.com>
Subject: [pull request][net-next 00/16] mlx5 updates 2021-04-13
Date: Tue, 13 Apr 2021 12:29:50 -0700 [thread overview]
Message-ID: <20210413193006.21650-1-saeed@kernel.org> (raw)
From: Saeed Mahameed <saeedm@nvidia.com>
Hi Dave, Jakub,
This patchset includes some updates and cleanup 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 8ef7adc6beb2ef0bce83513dc9e4505e7b21e8c2:
net: ethernet: ravb: Enable optional refclk (2021-04-12 14:09:59 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2021-04-13
for you to fetch changes up to fc04631cdd47c5ddeaea4848f790163390b6d42b:
net/mlx5e: Fix RQ creation flow for queues which doesn't support XDP (2021-04-13 12:27:31 -0700)
----------------------------------------------------------------
mlx5-updates-2021-04-13
mlx5 core and netdev driver updates
1) E-Switch updates from Parav,
1.1) Devlink parameter to control mlx5 metadata enablement for E-Switch
1.2) Trivial cleanups for E-Switch code
1.3) Dynamically allocate vport steering namespaces only when required
2) From Jianbo, Use variably sized data structures for Software steering
3) Several minor cleanups
----------------------------------------------------------------
Aya Levin (1):
net/mlx5e: Fix RQ creation flow for queues which doesn't support XDP
Colin Ian King (1):
net/mlx5: Fix bit-wise and with zero
Jianbo Liu (1):
net/mlx5: DR, Use variably sized data structures for different actions
Parav Pandit (9):
net/mlx5: E-Switch, let user to enable disable metadata
net/mlx5: E-Switch, Skip querying SF enabled bits
net/mlx5: E-Switch, Make vport number u16
net/mlx5: E-Switch Make cleanup sequence mirror of init
net/mlx5: E-Switch, Convert a macro to a helper routine
net/mlx5: E-Switch, Move legacy code to a individual file
net/mlx5: E-Switch, Initialize eswitch acls ns when eswitch is enabled
net/mlx5: SF, Use device pointer directly
net/mlx5: SF, Reuse stored hardware function id
Roi Dayan (1):
net/mlx5: DR, Alloc cmd buffer with kvzalloc() instead of kzalloc()
Wenpeng Liang (3):
net/mlx5: Add a blank line after declarations
net/mlx5: Remove return statement exist at the end of void function
net/mlx5: Replace spaces with tab at the start of a line
.../device_drivers/ethernet/mellanox/mlx5.rst | 23 +
drivers/net/ethernet/mellanox/mlx5/core/Makefile | 2 +-
drivers/net/ethernet/mellanox/mlx5/core/devlink.c | 62 +++
drivers/net/ethernet/mellanox/mlx5/core/devlink.h | 1 +
drivers/net/ethernet/mellanox/mlx5/core/en_arfs.c | 4 +-
drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 5 +-
drivers/net/ethernet/mellanox/mlx5/core/en_rep.c | 2 +-
.../net/ethernet/mellanox/mlx5/core/esw/legacy.c | 509 ++++++++++++++++++
.../net/ethernet/mellanox/mlx5/core/esw/legacy.h | 22 +
drivers/net/ethernet/mellanox/mlx5/core/eswitch.c | 595 +++------------------
drivers/net/ethernet/mellanox/mlx5/core/eswitch.h | 11 +-
.../ethernet/mellanox/mlx5/core/eswitch_offloads.c | 33 +-
.../net/ethernet/mellanox/mlx5/core/fpga/ipsec.c | 3 +-
drivers/net/ethernet/mellanox/mlx5/core/fs_core.c | 88 ++-
drivers/net/ethernet/mellanox/mlx5/core/fs_core.h | 7 +
drivers/net/ethernet/mellanox/mlx5/core/lag.c | 2 -
drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c | 1 -
drivers/net/ethernet/mellanox/mlx5/core/rdma.c | 1 -
.../net/ethernet/mellanox/mlx5/core/sf/devlink.c | 5 +-
.../net/ethernet/mellanox/mlx5/core/sf/hw_table.c | 16 +-
.../mellanox/mlx5/core/steering/dr_action.c | 242 +++++----
.../ethernet/mellanox/mlx5/core/steering/dr_cmd.c | 4 +-
.../ethernet/mellanox/mlx5/core/steering/dr_send.c | 14 +-
.../mellanox/mlx5/core/steering/dr_table.c | 4 +-
.../mellanox/mlx5/core/steering/dr_types.h | 104 ++--
include/linux/mlx5/eswitch.h | 3 +-
26 files changed, 985 insertions(+), 778 deletions(-)
create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/esw/legacy.c
create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/esw/legacy.h
next reply other threads:[~2021-04-13 19:30 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-13 19:29 Saeed Mahameed [this message]
2021-04-13 19:29 ` [net-next 01/16] net/mlx5: E-Switch, let user to enable disable metadata Saeed Mahameed
2021-04-13 20:21 ` Jakub Kicinski
2021-04-13 22:40 ` Saeed Mahameed
2021-04-13 22:57 ` Jakub Kicinski
2021-04-13 19:29 ` [net-next 02/16] net/mlx5: E-Switch, Skip querying SF enabled bits Saeed Mahameed
2021-04-13 19:29 ` [net-next 03/16] net/mlx5: E-Switch, Make vport number u16 Saeed Mahameed
2021-04-13 19:29 ` [net-next 04/16] net/mlx5: E-Switch Make cleanup sequence mirror of init Saeed Mahameed
2021-04-13 19:29 ` [net-next 05/16] net/mlx5: E-Switch, Convert a macro to a helper routine Saeed Mahameed
2021-04-13 19:29 ` [net-next 06/16] net/mlx5: E-Switch, Move legacy code to a individual file Saeed Mahameed
2021-04-13 19:29 ` [net-next 07/16] net/mlx5: E-Switch, Initialize eswitch acls ns when eswitch is enabled Saeed Mahameed
2021-04-13 19:29 ` [net-next 08/16] net/mlx5: SF, Use device pointer directly Saeed Mahameed
2021-04-13 19:29 ` [net-next 09/16] net/mlx5: SF, Reuse stored hardware function id Saeed Mahameed
2021-04-13 19:30 ` [net-next 10/16] net/mlx5: DR, Use variably sized data structures for different actions Saeed Mahameed
2021-04-13 19:30 ` [net-next 11/16] net/mlx5: DR, Alloc cmd buffer with kvzalloc() instead of kzalloc() Saeed Mahameed
2021-04-13 19:30 ` [net-next 12/16] net/mlx5: Fix bit-wise and with zero Saeed Mahameed
2021-04-13 19:30 ` [net-next 13/16] net/mlx5: Add a blank line after declarations Saeed Mahameed
2021-04-13 19:30 ` [net-next 14/16] net/mlx5: Remove return statement exist at the end of void function Saeed Mahameed
2021-04-13 19:30 ` [net-next 15/16] net/mlx5: Replace spaces with tab at the start of a line Saeed Mahameed
2021-04-13 19:30 ` [net-next 16/16] net/mlx5e: Fix RQ creation flow for queues which doesn't support XDP 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=20210413193006.21650-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 \
--cc=tariqt@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).