All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dennis Dalessandro <dennis.dalessandro@intel.com>
To: jgg@ziepe.ca, dledford@redhat.com
Cc: Mike Marciniszyn <mike.marciniszyn@intel.com>,
	linux-rdma@vger.kernel.org, stable@vger.kernel.org,
	"Michael J. Ruhl" <michael.j.ruhl@intel.com>,
	Don Hiatt <don.hiatt@intel.com>,
	Sebastian Sanchez <sebastian.sanchez@intel.com>
Subject: [PATCH for-rc v2 0/6] IB/hfi1,rdmavt: Fixes for the 4.17 RC
Date: Tue, 01 May 2018 05:35:27 -0700	[thread overview]
Message-ID: <20180501123317.24520.8848.stgit@scvm10.sc.intel.com> (raw)

Hi Jason and Doug,

Here are 6 patches that might make the bar for RC. The first patch fixes
something that came in pretty recently, I beleive 4.13. The second patch is
trivial, but does modify user visible text.

Patch 3 looks large but it's mostly comments. It just moves code. Patch 4 is
also pretty simple. The last two patches fix memory leaks.

If you don't think these pass muster for RC please carry over to for-next.

Changes since V1:
Correct version tag so it shows up as for-rc in patchworks. 

---

Michael J. Ruhl (1):
      IB/hfi1 Use correct type for num_user_context

Mike Marciniszyn (2):
      IB/hfi1: Fix handling of FECN marked multicast packet
      IB/hfi1: Fix loss of BECN with AHG

Sebastian Sanchez (3):
      IB/hfi1: Fix NULL pointer dereference when invalid num_vls is used
      IB/{hfi1,rdmavt}: Fix memory leak in hfi1_alloc_devdata() upon failure
      IB/hfi1: Fix memory leak in exception path in get_irq_affinity()


 drivers/infiniband/hw/hfi1/affinity.c |   11 +++----
 drivers/infiniband/hw/hfi1/driver.c   |   19 ++++++++++---
 drivers/infiniband/hw/hfi1/hfi.h      |    8 +++--
 drivers/infiniband/hw/hfi1/init.c     |   43 ++++++++++++++++++++--------
 drivers/infiniband/hw/hfi1/pcie.c     |    3 --
 drivers/infiniband/hw/hfi1/platform.c |    1 +
 drivers/infiniband/hw/hfi1/qsfp.c     |    2 +
 drivers/infiniband/hw/hfi1/ruc.c      |   50 ++++++++++++++++++++++++++-------
 drivers/infiniband/hw/hfi1/ud.c       |    6 ++--
 9 files changed, 101 insertions(+), 42 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Dennis Dalessandro <dennis.dalessandro@intel.com>
To: jgg@ziepe.ca, dledford@redhat.com
Cc: Mike Marciniszyn <mike.marciniszyn@intel.com>,
	linux-rdma@vger.kernel.org, stable@vger.kernel.org,
	"Michael J. Ruhl" <michael.j.ruhl@intel.com>,
	Don Hiatt <don.hiatt@intel.com>,
	Sebastian Sanchez <sebastian.sanchez@intel.com>
Subject: [PATCH for-rc v2 0/6] IB/hfi1,rdmavt: Fixes for the 4.17 RC
Date: Tue, 01 May 2018 05:35:27 -0700	[thread overview]
Message-ID: <20180501123317.24520.8848.stgit@scvm10.sc.intel.com> (raw)

Hi Jason and Doug,

Here are 6 patches that might make the bar for RC. The first patch fixes
something that came in pretty recently, I beleive 4.13. The second patch is
trivial, but does modify user visible text.

Patch 3 looks large but it's mostly comments. It just moves code. Patch 4 is
also pretty simple. The last two patches fix memory leaks.

If you don't think these pass muster for RC please carry over to for-next.

Changes since V1:
Correct version tag so it shows up as for-rc in patchworks. 

---

Michael J. Ruhl (1):
      IB/hfi1 Use correct type for num_user_context

Mike Marciniszyn (2):
      IB/hfi1: Fix handling of FECN marked multicast packet
      IB/hfi1: Fix loss of BECN with AHG

Sebastian Sanchez (3):
      IB/hfi1: Fix NULL pointer dereference when invalid num_vls is used
      IB/{hfi1,rdmavt}: Fix memory leak in hfi1_alloc_devdata() upon failure
      IB/hfi1: Fix memory leak in exception path in get_irq_affinity()


 drivers/infiniband/hw/hfi1/affinity.c |   11 +++----
 drivers/infiniband/hw/hfi1/driver.c   |   19 ++++++++++---
 drivers/infiniband/hw/hfi1/hfi.h      |    8 +++--
 drivers/infiniband/hw/hfi1/init.c     |   43 ++++++++++++++++++++--------
 drivers/infiniband/hw/hfi1/pcie.c     |    3 --
 drivers/infiniband/hw/hfi1/platform.c |    1 +
 drivers/infiniband/hw/hfi1/qsfp.c     |    2 +
 drivers/infiniband/hw/hfi1/ruc.c      |   50 ++++++++++++++++++++++++++-------
 drivers/infiniband/hw/hfi1/ud.c       |    6 ++--
 9 files changed, 101 insertions(+), 42 deletions(-)

--
-Denny

             reply	other threads:[~2018-05-01 12:35 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-01 12:35 Dennis Dalessandro [this message]
2018-05-01 12:35 ` [PATCH for-rc v2 0/6] IB/hfi1,rdmavt: Fixes for the 4.17 RC Dennis Dalessandro
2018-05-01 12:35 ` [PATCH for-rc v2 1/6] IB/hfi1: Fix handling of FECN marked multicast packet Dennis Dalessandro
2018-05-01 18:05   ` Jason Gunthorpe
2018-05-01 21:58     ` Marciniszyn, Mike
2018-05-02  2:24       ` Doug Ledford
2018-05-03 12:54         ` Marciniszyn, Mike
2018-05-03 19:08           ` Doug Ledford
2018-05-03 19:25             ` Doug Ledford
2018-05-01 12:35 ` [PATCH for-rc v2 3/6] IB/hfi1: Fix loss of BECN with AHG Dennis Dalessandro
2018-05-01 12:35 ` [PATCH for-rc v2 4/6] IB/hfi1: Fix NULL pointer dereference when invalid num_vls is used Dennis Dalessandro
2018-05-01 17:18 ` [PATCH for-rc v2 0/6] IB/hfi1,rdmavt: Fixes for the 4.17 RC Doug Ledford

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=20180501123317.24520.8848.stgit@scvm10.sc.intel.com \
    --to=dennis.dalessandro@intel.com \
    --cc=dledford@redhat.com \
    --cc=don.hiatt@intel.com \
    --cc=jgg@ziepe.ca \
    --cc=linux-rdma@vger.kernel.org \
    --cc=michael.j.ruhl@intel.com \
    --cc=mike.marciniszyn@intel.com \
    --cc=sebastian.sanchez@intel.com \
    --cc=stable@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 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.