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>,
Leon Romanovsky <leonro@nvidia.com>,
Saeed Mahameed <saeedm@nvidia.com>
Subject: [pull request][net 00/16] mlx5 fixes 2021-05-18
Date: Tue, 18 May 2021 23:05:07 -0700 [thread overview]
Message-ID: <20210519060523.17875-1-saeed@kernel.org> (raw)
From: Saeed Mahameed <saeedm@nvidia.com>
Hi Dave, Jakub,
This series introduces some fixes to mlx5 driver.
Please pull and let me know if there is any problem.
Thanks,
Saeed.
---
The following changes since commit c9fd37a9450b23804868d7a5b0d038b32ba466be:
Merge branch 'hns3-fixes' (2021-05-18 13:41:04 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-fixes-2021-05-18
for you to fetch changes up to e63052a5dd3ce7979bff727a8f4bb6d6b3d1317b:
mlx5e: add add missing BH locking around napi_schdule() (2021-05-18 23:01:55 -0700)
----------------------------------------------------------------
mlx5-fixes-2021-05-18
----------------------------------------------------------------
Ariel Levkovich (1):
net/mlx5: Set term table as an unmanaged flow table
Aya Levin (1):
net/mlx5e: Fix error path of updating netdev queues
Dima Chumak (3):
net/mlx5e: Fix nullptr in add_vlan_push_action()
net/mlx5e: Fix nullptr in mlx5e_tc_add_fdb_flow()
net/mlx5e: Fix multipath lag activation
Eli Cohen (1):
{net,vdpa}/mlx5: Configure interface MAC into mpfs L2 table
Jakub Kicinski (1):
mlx5e: add add missing BH locking around napi_schdule()
Jianbo Liu (1):
net/mlx5: Set reformat action when needed for termination rules
Leon Romanovsky (1):
net/mlx5: Don't overwrite HCA capabilities when setting MSI-X count
Maor Gottlieb (1):
{net, RDMA}/mlx5: Fix override of log_max_qp by other device
Parav Pandit (1):
net/mlx5: SF, Fix show state inactive when its inactivated
Roi Dayan (3):
net/mlx5: Fix err prints and return when creating termination table
net/mlx5e: Fix null deref accessing lag dev
net/mlx5e: Make sure fib dev exists in fib event
Saeed Mahameed (1):
net/mlx5e: reset XPS on error flow if netdev isn't registered yet
Vlad Buslov (1):
net/mlx5e: Reject mirroring on source port change encap rules
drivers/infiniband/hw/mlx5/mr.c | 4 +-
.../net/ethernet/mellanox/mlx5/core/en/rep/bond.c | 2 +
.../ethernet/mellanox/mlx5/core/en/tc_tun_encap.c | 2 +-
drivers/net/ethernet/mellanox/mlx5/core/en_fs.c | 1 +
drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 16 ++++--
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c | 26 +++++++--
drivers/net/ethernet/mellanox/mlx5/core/eswitch.c | 1 +
.../mellanox/mlx5/core/eswitch_offloads_termtbl.c | 61 +++++++++-------------
drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c | 6 +++
drivers/net/ethernet/mellanox/mlx5/core/lib/mpfs.c | 3 ++
drivers/net/ethernet/mellanox/mlx5/core/lib/mpfs.h | 5 +-
drivers/net/ethernet/mellanox/mlx5/core/main.c | 11 ++--
drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c | 22 ++++++--
.../net/ethernet/mellanox/mlx5/core/sf/devlink.c | 18 ++++---
drivers/vdpa/mlx5/net/mlx5_vnet.c | 19 ++++++-
include/linux/mlx5/driver.h | 44 ++++++++--------
include/linux/mlx5/mpfs.h | 18 +++++++
17 files changed, 168 insertions(+), 91 deletions(-)
create mode 100644 include/linux/mlx5/mpfs.h
next reply other threads:[~2021-05-19 6:06 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-19 6:05 Saeed Mahameed [this message]
2021-05-19 6:05 ` [net 01/16] {net, RDMA}/mlx5: Fix override of log_max_qp by other device Saeed Mahameed
2021-05-19 19:30 ` patchwork-bot+netdevbpf
2021-05-19 6:05 ` [net 02/16] net/mlx5e: Fix nullptr in add_vlan_push_action() Saeed Mahameed
2021-05-19 6:05 ` [net 03/16] net/mlx5: Set reformat action when needed for termination rules Saeed Mahameed
2021-05-19 6:05 ` [net 04/16] net/mlx5: Fix err prints and return when creating termination table Saeed Mahameed
2021-05-19 6:05 ` [net 05/16] net/mlx5: SF, Fix show state inactive when its inactivated Saeed Mahameed
2021-05-19 6:05 ` [net 06/16] net/mlx5e: Fix nullptr in mlx5e_tc_add_fdb_flow() Saeed Mahameed
2021-05-19 6:05 ` [net 07/16] net/mlx5e: Fix null deref accessing lag dev Saeed Mahameed
2021-05-19 6:05 ` [net 08/16] net/mlx5e: Make sure fib dev exists in fib event Saeed Mahameed
2021-05-19 6:05 ` [net 09/16] net/mlx5e: reset XPS on error flow if netdev isn't registered yet Saeed Mahameed
2021-05-19 6:05 ` [net 10/16] net/mlx5e: Fix multipath lag activation Saeed Mahameed
2021-05-19 6:05 ` [net 11/16] net/mlx5e: Reject mirroring on source port change encap rules Saeed Mahameed
2021-05-19 6:05 ` [net 12/16] net/mlx5e: Fix error path of updating netdev queues Saeed Mahameed
2021-05-19 6:05 ` [net 13/16] {net,vdpa}/mlx5: Configure interface MAC into mpfs L2 table Saeed Mahameed
2021-05-19 6:05 ` [net 14/16] net/mlx5: Don't overwrite HCA capabilities when setting MSI-X count Saeed Mahameed
2021-05-19 6:05 ` [net 15/16] net/mlx5: Set term table as an unmanaged flow table Saeed Mahameed
2021-05-19 6:05 ` [net 16/16] mlx5e: add add missing BH locking around napi_schdule() 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=20210519060523.17875-1-saeed@kernel.org \
--to=saeed@kernel.org \
--cc=davem@davemloft.net \
--cc=kuba@kernel.org \
--cc=leonro@nvidia.com \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.