netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [pull request][net 00/16] mlx5 fixes 2021-05-18
@ 2021-05-19  6:05 Saeed Mahameed
  2021-05-19  6:05 ` [net 01/16] {net, RDMA}/mlx5: Fix override of log_max_qp by other device Saeed Mahameed
                   ` (15 more replies)
  0 siblings, 16 replies; 18+ messages in thread
From: Saeed Mahameed @ 2021-05-19  6:05 UTC (permalink / raw)
  To: David S. Miller, Jakub Kicinski
  Cc: netdev, Tariq Toukan, Leon Romanovsky, Saeed Mahameed

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

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2021-05-19 19:30 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-19  6:05 [pull request][net 00/16] mlx5 fixes 2021-05-18 Saeed Mahameed
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

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).