All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] For 4.9 rc
@ 2016-10-17 11:19 Dennis Dalessandro
       [not found] ` <20161017103326.7934.21558.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
  2016-10-17 11:20 ` [PATCH 12/12] IB/hfi1: Fix rnr_timer addition Dennis Dalessandro
  0 siblings, 2 replies; 19+ messages in thread
From: Dennis Dalessandro @ 2016-10-17 11:19 UTC (permalink / raw)
  To: dledford
  Cc: Mike Marciniszyn, Dean Luick, Jakub Pawlak, Ira Weiny,
	Tadeusz Struk, linux-rdma, Tymoteusz Kielan, Brian Welty, stable,
	Jason Gunthorpe, Easwar Hariharan, Krzysztof Blaszkowski,
	Sebastian Sanchez, Jianxin Xiong

Doug,

Here are some more patches for hfi1 and rdmavt. That I didn't bother to send
at the tail end of the merge window based on Linus' recent response on the
list. 

I think these could for the next RC. They build on the most recent patch set
[1] that is pending on the list.

If we need to remove any of these, or from [1] for the RC let me know and I can
respin or you can just drop.

Note there is another stable fix in here.

[1] http://marc.info/?l=linux-rdma&m=147610526924704&w=2

Can also be found in GitHub repo at:
https://github.com/ddalessa/kernel/tree/for-4.9

---

Dennis Dalessandro (1):
      IB/hfi1: Remove leftover snoop references

Easwar Hariharan (3):
      IB/hfi1: Add active channel and backplane support for integrated devices
      IB/hfi1: Clean up unused argument
      IB/hfi1: Delete unused lock

Ira Weiny (1):
      IB/hfi1: Fix rnr_timer addition

Jakub Pawlak (1):
      IB/hfi1: Unify access to GUID entries

Jianxin Xiong (1):
      IB/hfi1: Fix a potential memory leak in hfi1_create_ctxts()

Krzysztof Blaszkowski (1):
      IB/hfi1: Return ENODEV for unsupported PCI device ids.

Mike Marciniszyn (2):
      IB/rdmvat: Organize hot path calldowns into a single cacheline
      IB/hfi1: Optimize pio cachelines

Sebastian Sanchez (1):
      IB/hfi1: Optimize devdata cachelines

Tadeusz Struk (1):
      IB/hfi1: Fix an Oops on pci device force remove


 drivers/infiniband/hw/hfi1/chip.c           |   29 +---
 drivers/infiniband/hw/hfi1/chip_registers.h |    3 
 drivers/infiniband/hw/hfi1/file_ops.c       |    5 +
 drivers/infiniband/hw/hfi1/firmware.c       |  136 ++++++++++++++++---
 drivers/infiniband/hw/hfi1/hfi.h            |  193 +++++++++++++--------------
 drivers/infiniband/hw/hfi1/init.c           |   58 +++++---
 drivers/infiniband/hw/hfi1/mad.c            |   19 +--
 drivers/infiniband/hw/hfi1/pcie.c           |    3 
 drivers/infiniband/hw/hfi1/pio.h            |   10 +
 drivers/infiniband/hw/hfi1/platform.c       |  149 +++++++++++++++++----
 drivers/infiniband/hw/hfi1/platform.h       |  117 ++++++++++++++++
 drivers/infiniband/hw/hfi1/rc.c             |    2 
 drivers/infiniband/hw/hfi1/ruc.c            |   16 --
 drivers/infiniband/hw/hfi1/trace_rx.h       |   60 --------
 drivers/infiniband/hw/hfi1/verbs.c          |   15 +-
 drivers/infiniband/hw/hfi1/verbs.h          |    3 
 include/rdma/rdma_vt.h                      |   46 +++---
 17 files changed, 557 insertions(+), 307 deletions(-)

--
-Denny

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

end of thread, other threads:[~2016-10-25 18:03 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-17 11:19 [PATCH 00/12] For 4.9 rc Dennis Dalessandro
     [not found] ` <20161017103326.7934.21558.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2016-10-17 11:19   ` [PATCH 01/12] IB/rdmvat: Organize hot path calldowns into a single cacheline Dennis Dalessandro
2016-10-17 11:19   ` [PATCH 02/12] IB/hfi1: Optimize pio cachelines Dennis Dalessandro
2016-10-17 11:19   ` [PATCH 03/12] IB/hfi1: Fix an Oops on pci device force remove Dennis Dalessandro
     [not found]     ` <20161017111918.7934.72325.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2016-10-17 16:07       ` Jason Gunthorpe
     [not found]         ` <20161017160731.GA5679-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-19 18:01           ` Tadeusz Struk
2016-10-25 15:57           ` [PATCH v2 " Dennis Dalessandro
     [not found]             ` <20161025155754.4950.23412.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2016-10-25 16:48               ` Jason Gunthorpe
     [not found]                 ` <20161025164851.GA28096-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-25 17:38                   ` Tadeusz Struk
     [not found]                     ` <7f4cbe0c-0c83-48b2-9901-4a5e27b306b4-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-10-25 18:03                       ` Jason Gunthorpe
2016-10-17 11:19   ` [PATCH 04/12] IB/hfi1: Return ENODEV for unsupported PCI device ids Dennis Dalessandro
2016-10-17 11:19   ` [PATCH 05/12] IB/hfi1: Unify access to GUID entries Dennis Dalessandro
2016-10-17 11:19   ` [PATCH 06/12] IB/hfi1: Optimize devdata cachelines Dennis Dalessandro
2016-10-17 11:19   ` [PATCH 07/12] IB/hfi1: Fix a potential memory leak in hfi1_create_ctxts() Dennis Dalessandro
2016-10-17 11:19   ` [PATCH 08/12] IB/hfi1: Add active channel and backplane support for integrated devices Dennis Dalessandro
2016-10-17 11:19   ` [PATCH 09/12] IB/hfi1: Remove leftover snoop references Dennis Dalessandro
2016-10-17 11:19   ` [PATCH 10/12] IB/hfi1: Clean up unused argument Dennis Dalessandro
2016-10-17 11:20   ` [PATCH 11/12] IB/hfi1: Delete unused lock Dennis Dalessandro
2016-10-17 11:20 ` [PATCH 12/12] IB/hfi1: Fix rnr_timer addition Dennis Dalessandro

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.