From: Dennis Dalessandro <dennis.dalessandro@intel.com>
To: dledford@redhat.com
Cc: Mike Marciniszyn <mike.marciniszyn@intel.com>,
Stuart Summers <john.s.summers@intel.com>,
linux-rdma@vger.kernel.org, Ira Weiny <ira.weiny@intel.com>,
Mitko Haralanov <mitko.haralanov@intel.com>,
Tadeusz Struk <tadeusz.struk@intel.com>,
stable@vger.kernel.org,
"Michael J. Ruhl" <michael.j.ruhl@intel.com>,
Easwar Hariharan <easwar.hariharan@intel.com>,
Don Hiatt <don.hiatt@intel.com>,
Neel Desai <neel.desai@intel.com>,
Leon Romanovsky <leonro@mellanox.com>,
Sebastian Sanchez <sebastian.sanchez@intel.com>,
Dasaratharaman Chandramouli
<dasaratharaman.chandramouli@intel.com>
Subject: [PATCH v2 00/19] IB/hfi1,rdmavt,core: Patches for-next
Date: Fri, 28 Apr 2017 10:38:49 -0700 [thread overview]
Message-ID: <20170428173443.23960.32602.stgit@scvm10.sc.intel.com> (raw)
Doug,
Here are some patches for the next release. It includes the core fix that did
not apply from my last series. Other than that this is the usual bug fixes
and some minor clean ups.
Patches apply on top of your for-4.12 branch and can also be found in my
GitHub repo at: https://github.com/ddalessa/kernel/tree/for-4.12
---
Changes since V1:
* Dropped: [02/20] IB/hfi1: Remove hyper-thread siblings by walking CPU mask
* Fixed a scheduling while atomic bug in update_synth_timer
---
Dasaratharaman Chandramouli (1):
IB/hfi1: Rename hdr2sc to hfi1_9B_get_sc5
Dennis Dalessandro (4):
IB/hfi1: Fix misspelling in comment
IB/hfi1: Convert %Lx to %llx
IB/hfi1: Fix unbalanced braces around else
IB/hfi1: Use bool in process_ecn
Don Hiatt (2):
IB/hfi1: Add functions to parse 9B headers
IB/hfi1: Use defines from common headers
Ira Weiny (1):
IB/hfi: Protect against writable mmap
Michael J. Ruhl (5):
IB/core: If the MGID/MLID pair is not on the list return an error
IB/hfi1: Correct MulticastMask/CollectiveMask info to SMA output
IB/core: For multicast functions, verify that LIDs are multicast LIDs
IB/rdmavt/hfi1/qib: Use the MGID and MLID for multicast addressing
IB/hfi1: Validate the TID count before using it
Mike Marciniszyn (1):
IB/hfi1: Prevent kernel QP post send hard lockups
Neel Desai (2):
IB/hfi1: Adjust high temperature warning for QSFP cable
IB/hfi1: Permanently enable P_Key checking in HFI
Sebastian Sanchez (1):
IB/hfi1: Return SC2VL mappings to FM with VL15 instead of ILLEGAL_VL
Stuart Summers (1):
IB/hfi1: Cache neighbor secure data after link up
Tadeusz Struk (1):
IB/hfi1: Fix softlockup issue
drivers/infiniband/core/uverbs_cmd.c | 13 ++-
drivers/infiniband/core/verbs.c | 8 +-
drivers/infiniband/hw/hfi1/chip.c | 121 ++++++++++++++---------------
drivers/infiniband/hw/hfi1/common.h | 15 ++--
drivers/infiniband/hw/hfi1/driver.c | 28 +++----
drivers/infiniband/hw/hfi1/file_ops.c | 4 +
drivers/infiniband/hw/hfi1/hfi.h | 27 ++++--
drivers/infiniband/hw/hfi1/init.c | 11 ++-
drivers/infiniband/hw/hfi1/intr.c | 27 ++++--
drivers/infiniband/hw/hfi1/mad.c | 56 +++++++------
drivers/infiniband/hw/hfi1/pcie.c | 2
drivers/infiniband/hw/hfi1/rc.c | 19 ++---
drivers/infiniband/hw/hfi1/ruc.c | 52 +++++++-----
drivers/infiniband/hw/hfi1/trace.c | 5 -
drivers/infiniband/hw/hfi1/trace_ibhdrs.h | 8 +-
drivers/infiniband/hw/hfi1/uc.c | 8 +-
drivers/infiniband/hw/hfi1/ud.c | 18 ++--
drivers/infiniband/hw/hfi1/user_exp_rcv.c | 3 +
drivers/infiniband/hw/hfi1/verbs.c | 16 ++--
drivers/infiniband/hw/hfi1/verbs.h | 6 +
drivers/infiniband/hw/qib/qib_verbs.c | 2
drivers/infiniband/sw/rdmavt/mcast.c | 61 +++++++++++----
include/rdma/ib_hdrs.h | 66 ++++++++++++++++
include/rdma/rdma_vt.h | 3 -
include/rdma/rdmavt_qp.h | 7 +-
25 files changed, 363 insertions(+), 223 deletions(-)
next reply other threads:[~2017-04-28 17:38 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-28 17:38 Dennis Dalessandro [this message]
2017-04-28 17:39 ` [PATCH v2 03/19] IB/core: For multicast functions, verify that LIDs are multicast LIDs Dennis Dalessandro
[not found] ` <20170428173443.23960.32602.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-04-28 17:38 ` [PATCH v2 01/19] IB/core: If the MGID/MLID pair is not on the list return an error Dennis Dalessandro
2017-04-28 17:39 ` [PATCH v2 02/19] IB/hfi1: Correct MulticastMask/CollectiveMask info to SMA output Dennis Dalessandro
2017-04-28 17:39 ` [PATCH v2 04/19] IB/rdmavt/hfi1/qib: Use the MGID and MLID for multicast addressing Dennis Dalessandro
2017-04-28 17:39 ` [PATCH v2 05/19] IB/hfi1: Validate the TID count before using it Dennis Dalessandro
2017-04-28 17:39 ` [PATCH v2 06/19] IB/hfi1: Return SC2VL mappings to FM with VL15 instead of ILLEGAL_VL Dennis Dalessandro
2017-04-28 17:39 ` [PATCH v2 07/19] IB/hfi1: Rename hdr2sc to hfi1_9B_get_sc5 Dennis Dalessandro
2017-04-28 17:39 ` [PATCH v2 08/19] IB/hfi1: Add functions to parse 9B headers Dennis Dalessandro
2017-04-28 17:39 ` [PATCH v2 09/19] IB/hfi1: Use defines from common headers Dennis Dalessandro
2017-04-28 17:39 ` [PATCH v2 10/19] IB/hfi1: Prevent kernel QP post send hard lockups Dennis Dalessandro
2017-04-28 17:40 ` [PATCH v2 11/19] IB/hfi1: Fix softlockup issue Dennis Dalessandro
2017-04-28 17:40 ` [PATCH v2 12/19] IB/hfi1: Adjust high temperature warning for QSFP cable Dennis Dalessandro
2017-04-28 17:40 ` [PATCH v2 13/19] IB/hfi1: Cache neighbor secure data after link up Dennis Dalessandro
2017-04-28 17:40 ` [PATCH v2 14/19] IB/hfi1: Permanently enable P_Key checking in HFI Dennis Dalessandro
2017-04-28 17:40 ` [PATCH v2 15/19] IB/hfi1: Fix misspelling in comment Dennis Dalessandro
2017-04-28 17:40 ` [PATCH v2 16/19] IB/hfi1: Convert %Lx to %llx Dennis Dalessandro
2017-04-28 17:40 ` [PATCH v2 17/19] IB/hfi1: Fix unbalanced braces around else Dennis Dalessandro
2017-04-28 17:40 ` [PATCH v2 18/19] IB/hfi: Protect against writable mmap Dennis Dalessandro
2017-04-28 17:40 ` [PATCH v2 19/19] IB/hfi1: Use bool in process_ecn Dennis Dalessandro
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=20170428173443.23960.32602.stgit@scvm10.sc.intel.com \
--to=dennis.dalessandro@intel.com \
--cc=dasaratharaman.chandramouli@intel.com \
--cc=dledford@redhat.com \
--cc=don.hiatt@intel.com \
--cc=easwar.hariharan@intel.com \
--cc=ira.weiny@intel.com \
--cc=john.s.summers@intel.com \
--cc=leonro@mellanox.com \
--cc=linux-rdma@vger.kernel.org \
--cc=michael.j.ruhl@intel.com \
--cc=mike.marciniszyn@intel.com \
--cc=mitko.haralanov@intel.com \
--cc=neel.desai@intel.com \
--cc=sebastian.sanchez@intel.com \
--cc=stable@vger.kernel.org \
--cc=tadeusz.struk@intel.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).