netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Saeed Mahameed <saeedm@mellanox.com>
To: "David S. Miller" <davem@davemloft.net>, kuba@kernel.org
Cc: netdev@vger.kernel.org, Saeed Mahameed <saeedm@mellanox.com>
Subject: [pull request][net 00/13] mlx5 fixes 2020-05-22
Date: Fri, 22 May 2020 17:40:36 -0700	[thread overview]
Message-ID: <20200523004049.34832-1-saeedm@mellanox.com> (raw)

Hi Dave,

This series introduces some fixes to mlx5 driver.

Please pull and let me know if there is any problem.

For -stable v4.13
   ('net/mlx5: Add command entry handling completion')

For -stable v5.2
   ('net/mlx5: Fix error flow in case of function_setup failure')
   ('net/mlx5: Fix memory leak in mlx5_events_init')

For -stable v5.3
   ('net/mlx5e: Update netdev txq on completions during closure')
   ('net/mlx5e: kTLS, Destroy key object after destroying the TIS')
   ('net/mlx5e: Fix inner tirs handling')

For -stable v5.6
   ('net/mlx5: Fix cleaning unmanaged flow tables')
   ('net/mlx5: Fix a race when moving command interface to events mode')

Thanks,
Saeed.

---
The following changes since commit 5a730153984dd13f82ffae93d7170d76eba204e9:

  net: sun: fix missing release regions in cas_init_one(). (2020-05-22 16:19:46 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-fixes-2020-05-22

for you to fetch changes up to 4f7400d5cbaef676e00cdffb0565bf731c6bb09e:

  net/mlx5: Fix error flow in case of function_setup failure (2020-05-22 17:28:58 -0700)

----------------------------------------------------------------
mlx5-fixes-2020-05-22

----------------------------------------------------------------
Eran Ben Elisha (2):
      net/mlx5: Fix a race when moving command interface to events mode
      net/mlx5: Avoid processing commands before cmdif is ready

Maor Dickman (1):
      net/mlx5e: Fix allowed tc redirect merged eswitch offload cases

Moshe Shemesh (3):
      net/mlx5: Add command entry handling completion
      net/mlx5: Fix memory leak in mlx5_events_init
      net/mlx5e: Update netdev txq on completions during closure

Roi Dayan (5):
      net/mlx5e: Fix inner tirs handling
      net/mlx5: Fix cleaning unmanaged flow tables
      net/mlx5: Don't maintain a case of del_sw_func being null
      net/mlx5: Annotate mutex destroy for root ns
      net/mlx5e: CT: Correctly get flow rule

Shay Drory (1):
      net/mlx5: Fix error flow in case of function_setup failure

Tariq Toukan (1):
      net/mlx5e: kTLS, Destroy key object after destroying the TIS

 drivers/net/ethernet/mellanox/mlx5/core/cmd.c      | 59 ++++++++++++++++++++--
 drivers/net/ethernet/mellanox/mlx5/core/en.h       |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c |  5 +-
 drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.h |  4 +-
 .../ethernet/mellanox/mlx5/core/en_accel/ktls.c    |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  | 12 +++--
 drivers/net/ethernet/mellanox/mlx5/core/en_rep.c   | 12 ++---
 drivers/net/ethernet/mellanox/mlx5/core/en_rep.h   |  7 ++-
 drivers/net/ethernet/mellanox/mlx5/core/en_tc.c    | 40 ++++++++++++---
 drivers/net/ethernet/mellanox/mlx5/core/en_tx.c    |  9 ++--
 drivers/net/ethernet/mellanox/mlx5/core/eq.c       |  3 ++
 drivers/net/ethernet/mellanox/mlx5/core/events.c   |  4 +-
 drivers/net/ethernet/mellanox/mlx5/core/fs_core.c  | 30 +++++++----
 .../net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c  |  4 +-
 drivers/net/ethernet/mellanox/mlx5/core/main.c     |  7 ++-
 include/linux/mlx5/driver.h                        | 16 ++++++
 16 files changed, 168 insertions(+), 48 deletions(-)

             reply	other threads:[~2020-05-23  0:41 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-23  0:40 Saeed Mahameed [this message]
2020-05-23  0:40 ` [net 01/13] net/mlx5: Add command entry handling completion Saeed Mahameed
2020-05-23  0:40 ` [net 02/13] net/mlx5: Fix a race when moving command interface to events mode Saeed Mahameed
2020-05-23  0:40 ` [net 03/13] net/mlx5: Avoid processing commands before cmdif is ready Saeed Mahameed
2020-05-23  0:40 ` [net 04/13] net/mlx5e: Fix allowed tc redirect merged eswitch offload cases Saeed Mahameed
2020-05-23  0:40 ` [net 05/13] net/mlx5e: kTLS, Destroy key object after destroying the TIS Saeed Mahameed
2020-05-23  0:40 ` [net 06/13] net/mlx5e: Fix inner tirs handling Saeed Mahameed
2020-05-23  0:40 ` [net 07/13] net/mlx5: Fix memory leak in mlx5_events_init Saeed Mahameed
2020-05-23  0:40 ` [net 08/13] net/mlx5: Fix cleaning unmanaged flow tables Saeed Mahameed
2020-05-23  0:40 ` [net 09/13] net/mlx5: Don't maintain a case of del_sw_func being null Saeed Mahameed
2020-05-23  0:40 ` [net 10/13] net/mlx5: Annotate mutex destroy for root ns Saeed Mahameed
2020-05-23  0:40 ` [net 11/13] net/mlx5e: Update netdev txq on completions during closure Saeed Mahameed
2020-05-23  0:40 ` [net 12/13] net/mlx5e: CT: Correctly get flow rule Saeed Mahameed
2020-05-23  0:40 ` [net 13/13] net/mlx5: Fix error flow in case of function_setup failure Saeed Mahameed
2020-05-23 23:47 ` [pull request][net 00/13] mlx5 fixes 2020-05-22 David Miller

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=20200523004049.34832-1-saeedm@mellanox.com \
    --to=saeedm@mellanox.com \
    --cc=davem@davemloft.net \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    /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).