All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/20] IB/hfi1, qib, rdmavt: Another round of patches for 4.11
@ 2017-03-21  0:24 ` Dennis Dalessandro
  0 siblings, 0 replies; 42+ messages in thread
From: Dennis Dalessandro @ 2017-03-21  0:24 UTC (permalink / raw)
  To: dledford-H+wXaHxf7aLQT0dZR+AlfA
  Cc: Mike Marciniszyn, Dean Luick, Jakub Byczkowski, Tadeusz Struk,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA, Ira Weiny, Brian Welty,
	Easwar Hariharan, stable-u79uwXL29TY76Z2rM5mHXA, Leon Romanovsky,
	Michael J. Ruhl, Don Hiatt, Sebastian Sanchez

Doug,
Here is another round of patches for 4.11. Included with the usual bug fixes
and general improvements of particular interest are new versions of the two
patches that you didn't take for the first set. The fault injection stuff.
We decided to go ahead and use the already existing config variable for those.
The other interesting thing here is a patch to the IB core for MGID/MLID
checking.

Patches apply on top of Linus' master branch which includes your most recent
pull request so this should apply equally well to your tree. Patches can 
also be found in my GitHub repo at:
https://github.com/ddalessa/kernel/tree/for-4.11

Changes since v1:
-----------------
Correct 0-day build errors in fault injection patches
Correct swqe completion trace message location

---

Dean Luick (1):
      IB/hfi1: Force logical link down

Don Hiatt (2):
      IB/hfi1: Add receive fault injection feature
      IB/hfi1: Add transmit fault injection feature

Easwar Hariharan (1):
      IB/hfi1: Check for QSFP presence before attempting reads

Michael J. Ruhl (5):
      IB/hfi1: Race hazard avoidance in user SDMA driver
      IB/hfi1: Cache registers during state change
      IB/hfi1: Add a patch value to the firmware version string
      IB/hfi1: Ensure VL index is within bounds
      IB/core: If the MGID/MLID pair is not on the list return an error

Mike Marciniszyn (7):
      IB/rdmavt,IB/hfi1,IB/qib: Make wc opcode translation driver dependent
      IB/rdmavt: Add additional fields to post send trace
      IB/rdmavt: Add tracing for cq entry and poll
      IB/rdmavt: Add swqe completion trace
      IB/rdmavt: Avoid reseting wqe send_flags in unreserve
      IB/hfi1: Eliminate synchronize_rcu() in mr delete
      IB/rdmavt,IB/qib,IB/hfi1: Make percpu refcount optional for user MRs

Sebastian Sanchez (2):
      IB/hfi1: NULL pointer dereference when freeing rhashtable
      IB/rdmavt,IB/hfi1: Fix timer migration regressions

Tadeusz Struk (2):
      IB/hfi1: Check device id early during init
      IB/hfi1: Protect the global dev_cntr_names and port_cntr_names


 drivers/infiniband/core/uverbs_cmd.c    |   13 +-
 drivers/infiniband/hw/hfi1/chip.c       |  178 ++++++++++++++++++++----
 drivers/infiniband/hw/hfi1/chip.h       |   18 +-
 drivers/infiniband/hw/hfi1/debugfs.c    |  230 +++++++++++++++++++++++++++++++
 drivers/infiniband/hw/hfi1/debugfs.h    |   62 ++++++++
 drivers/infiniband/hw/hfi1/driver.c     |   19 +++
 drivers/infiniband/hw/hfi1/firmware.c   |   14 +-
 drivers/infiniband/hw/hfi1/hfi.h        |   11 +
 drivers/infiniband/hw/hfi1/init.c       |   19 +--
 drivers/infiniband/hw/hfi1/rc.c         |   12 +-
 drivers/infiniband/hw/hfi1/ruc.c        |    7 +
 drivers/infiniband/hw/hfi1/sdma.c       |   43 ++++--
 drivers/infiniband/hw/hfi1/trace_misc.h |   48 ++++++
 drivers/infiniband/hw/hfi1/trace_rc.h   |    7 -
 drivers/infiniband/hw/hfi1/trace_tx.h   |   43 ++++++
 drivers/infiniband/hw/hfi1/user_sdma.c  |    3 
 drivers/infiniband/hw/hfi1/verbs.c      |  104 ++++++++++++--
 drivers/infiniband/hw/hfi1/verbs.h      |    5 +
 drivers/infiniband/hw/qib/qib_rc.c      |   10 +
 drivers/infiniband/hw/qib/qib_ruc.c     |    5 +
 drivers/infiniband/hw/qib/qib_verbs.c   |   20 +++
 drivers/infiniband/sw/rdmavt/cq.c       |    3 
 drivers/infiniband/sw/rdmavt/mr.c       |   55 +++++--
 drivers/infiniband/sw/rdmavt/qp.c       |   32 +---
 drivers/infiniband/sw/rdmavt/trace.h    |    4 -
 drivers/infiniband/sw/rdmavt/trace_cq.h |  127 +++++++++++++++++
 drivers/infiniband/sw/rdmavt/trace_rc.h |  109 +++++++++++++++
 drivers/infiniband/sw/rdmavt/trace_tx.h |   34 ++++-
 include/rdma/ib_pack.h                  |    2 
 include/rdma/rdma_vt.h                  |    1 
 include/rdma/rdmavt_qp.h                |    7 -
 31 files changed, 1096 insertions(+), 149 deletions(-)
 create mode 100644 drivers/infiniband/sw/rdmavt/trace_cq.h
 create mode 100644 drivers/infiniband/sw/rdmavt/trace_rc.h

--
-Denny
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2017-04-09  6:26 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-21  0:24 [PATCH v2 00/20] IB/hfi1, qib, rdmavt: Another round of patches for 4.11 Dennis Dalessandro
2017-03-21  0:24 ` Dennis Dalessandro
     [not found] ` <20170321001900.28538.38175.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-03-21  0:24   ` [PATCH v2 01/20] IB/hfi1: Force logical link down Dennis Dalessandro
2017-03-21  0:24   ` [PATCH v2 02/20] IB/hfi1: Race hazard avoidance in user SDMA driver Dennis Dalessandro
2017-03-21  0:24   ` [PATCH v2 03/20] IB/hfi1: Cache registers during state change Dennis Dalessandro
2017-03-21  0:24   ` [PATCH v2 04/20] IB/hfi1: NULL pointer dereference when freeing rhashtable Dennis Dalessandro
2017-03-21  0:25   ` [PATCH v2 05/20] IB/rdmavt, IB/hfi1, IB/qib: Make wc opcode translation driver dependent Dennis Dalessandro
2017-03-21  0:25   ` [PATCH v2 06/20] IB/rdmavt: Add additional fields to post send trace Dennis Dalessandro
2017-03-21  0:25   ` [PATCH v2 07/20] IB/rdmavt: Add tracing for cq entry and poll Dennis Dalessandro
2017-03-21  0:25   ` [PATCH v2 08/20] IB/rdmavt: Add swqe completion trace Dennis Dalessandro
2017-03-21  0:25   ` [PATCH v2 09/20] IB/hfi1: Check device id early during init Dennis Dalessandro
2017-03-21  0:25   ` [PATCH v2 10/20] IB/hfi1: Protect the global dev_cntr_names and port_cntr_names Dennis Dalessandro
2017-03-21  0:25   ` [PATCH v2 11/20] IB/hfi1: Check for QSFP presence before attempting reads Dennis Dalessandro
2017-03-21  0:25   ` [PATCH v2 12/20] IB/hfi1: Add a patch value to the firmware version string Dennis Dalessandro
2017-03-21  0:25   ` [PATCH v2 13/20] IB/rdmavt, IB/hfi1: Fix timer migration regressions Dennis Dalessandro
2017-03-21  0:26   ` [PATCH v2 14/20] IB/rdmavt: Avoid reseting wqe send_flags in unreserve Dennis Dalessandro
2017-03-21  0:26   ` [PATCH v2 15/20] IB/hfi1: Ensure VL index is within bounds Dennis Dalessandro
2017-03-21  0:26   ` [PATCH v2 16/20] IB/hfi1: Add receive fault injection feature Dennis Dalessandro
2017-03-21  0:26   ` [PATCH v2 17/20] IB/hfi1: Add transmit " Dennis Dalessandro
     [not found]     ` <20170321002619.28538.31428.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-04-05 18:34       ` Doug Ledford
     [not found]         ` <1491417255.2923.5.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-04-05 18:49           ` Dennis Dalessandro
2017-03-21  0:26   ` [PATCH v2 18/20] IB/hfi1: Eliminate synchronize_rcu() in mr delete Dennis Dalessandro
2017-03-21  0:26   ` [PATCH v2 19/20] IB/rdmavt, IB/qib, IB/hfi1: Make percpu refcount optional for user MRs Dennis Dalessandro
     [not found]     ` <20170321002631.28538.2121.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-04-05 18:38       ` Doug Ledford
     [not found]         ` <1491417489.2923.6.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-04-05 19:46           ` Dennis Dalessandro
     [not found]             ` <f008c532-340e-01f2-80e6-4bea74175e3e-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-04-05 19:51               ` Leon Romanovsky
     [not found]                 ` <CALq1K=JsjSCiSBeZVe4kHQmjw7tznL36JcsamZTVGZ5RhBvZPw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-04-05 20:09                   ` Marciniszyn, Mike
     [not found]                     ` <32E1700B9017364D9B60AED9960492BC342EA858-RjuIdWtd+YbTXloPLtfHfbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2017-04-06  7:49                       ` Leon Romanovsky
     [not found]                         ` <20170406074955.GG2269-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-04-06 11:45                           ` Dennis Dalessandro
     [not found]                             ` <8cdf2fbb-f2a9-0b4b-b144-397ee73d1569-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-04-06 12:37                               ` Leon Romanovsky
     [not found]                                 ` <20170406123726.GH2269-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-04-06 13:00                                   ` Dennis Dalessandro
     [not found]                                     ` <f1703866-9c5c-a30a-0d95-9f6a33cc4f75-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-04-06 13:33                                       ` Leon Romanovsky
2017-04-06 14:47                               ` Marciniszyn, Mike
     [not found]                                 ` <32E1700B9017364D9B60AED9960492BC342EABD0-RjuIdWtd+YbTXloPLtfHfbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2017-04-06 17:13                                   ` Jason Gunthorpe
     [not found]                                     ` <20170406171354.GA19854-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2017-04-06 17:16                                       ` Marciniszyn, Mike
     [not found]                                         ` <32E1700B9017364D9B60AED9960492BC342EADEE-RjuIdWtd+YbTXloPLtfHfbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2017-04-06 17:44                                           ` Jason Gunthorpe
     [not found]                                             ` <20170406174438.GA20020-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2017-04-07 21:12                                               ` Marciniszyn, Mike
     [not found]                                                 ` <32E1700B9017364D9B60AED9960492BC342EBA18-RjuIdWtd+YbTXloPLtfHfbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2017-04-07 22:06                                                   ` Jason Gunthorpe
     [not found]                                                     ` <20170407220618.GA29138-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2017-04-09  6:26                                                       ` Leon Romanovsky
2017-04-05 19:47           ` Leon Romanovsky
2017-03-21  0:26 ` [PATCH v2 20/20] IB/core: If the MGID/MLID pair is not on the list return an error Dennis Dalessandro
2017-04-05 18:50 ` [PATCH v2 00/20] IB/hfi1, qib, rdmavt: Another round of patches for 4.11 Doug Ledford

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.