public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] IB/hfi1, rdmavt, core: Misc fixes and improvements for 4.7
@ 2016-05-12 17:22 Dennis Dalessandro
       [not found] ` <20160512172050.9741.84190.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Dennis Dalessandro @ 2016-05-12 17:22 UTC (permalink / raw)
  To: dledford-H+wXaHxf7aLQT0dZR+AlfA; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

Here are some patches that address a few bugs and a couple other clean ups that
did not make it in time for 4.6. There are also a couple performance related
patches as well.

There are more clean-ups on the way to address some of the feedback received
during reviews of other patches, however this stuff stands on its own so
separating it out into its own series.

This patch series applies on Doug's k.o/for-4.7 branch.

Patches can also be viewed in my repo at:
https://github.com/ddalessa/kernel/tree/for-4.7

---

Ashutosh Dixit (1):
      IB/hfi1: Change hfi1_init loop to preserve error returns

Dean Luick (2):
      IB/hfi1: Remove no-op QSFP reset code
      IB/hfi1: Immediately apply congestion setting MAD

Easwar Hariharan (3):
      IB/hfi1: Ignore non-temperature warnings on a downed link
      IB/hfi1: Wait for QSFP modules to initialize
      IB/hfi1: Correct external device configuration shift

Jakub Pawlak (1):
      IB/hfi1: Correct log message strings

Jianxin Xiong (2):
      IB/hfi1: Keep SC_USER as the last send context type
      ib_pack.h: Add opcode definition for send with invalidate

Jubin John (2):
      IB/hfi1: Remove unnecessary header
      IB/hfi1: Fix hfi_rcvhdr tracepoint

Mike Marciniszyn (3):
      IB/hfi1: Fix pio wait counter double increment
      IB/hfi1: Fix potential panic with sdma drained mechanism
      IB/rdmavt: Increase CQ callback thread priority

Mitko Haralanov (1):
      IB/hfi1: Improve performance of interval RB trees


 drivers/infiniband/sw/rdmavt/cq.c    |    1 
 drivers/staging/rdma/hfi1/chip.c     |   32 ++++++++----
 drivers/staging/rdma/hfi1/diag.c     |    2 -
 drivers/staging/rdma/hfi1/driver.c   |    2 -
 drivers/staging/rdma/hfi1/hfi.h      |    6 +-
 drivers/staging/rdma/hfi1/init.c     |    6 +-
 drivers/staging/rdma/hfi1/mad.c      |   93 ++++++++++++++++++++++------------
 drivers/staging/rdma/hfi1/mmu_rb.c   |   22 ++++----
 drivers/staging/rdma/hfi1/pio.h      |    8 +--
 drivers/staging/rdma/hfi1/platform.c |   21 +++++---
 drivers/staging/rdma/hfi1/platform.h |    1 
 drivers/staging/rdma/hfi1/qp.c       |    1 
 drivers/staging/rdma/hfi1/sdma.c     |    2 -
 drivers/staging/rdma/hfi1/sysfs.c    |    4 +
 drivers/staging/rdma/hfi1/trace.h    |    2 -
 drivers/staging/rdma/hfi1/verbs.c    |    2 -
 include/rdma/ib_pack.h               |    5 ++
 17 files changed, 128 insertions(+), 82 deletions(-)

-- 
-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] 17+ messages in thread

end of thread, other threads:[~2016-05-12 18:53 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-12 17:22 [PATCH 00/15] IB/hfi1, rdmavt, core: Misc fixes and improvements for 4.7 Dennis Dalessandro
     [not found] ` <20160512172050.9741.84190.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2016-05-12 17:22   ` [PATCH 01/15] IB/hfi1: Ignore non-temperature warnings on a downed link Dennis Dalessandro
2016-05-12 17:22   ` [PATCH 02/15] IB/hfi1: Wait for QSFP modules to initialize Dennis Dalessandro
2016-05-12 17:22   ` [PATCH 03/15] IB/hfi1: Correct external device configuration shift Dennis Dalessandro
2016-05-12 17:22   ` [PATCH 04/15] IB/hfi1: Remove no-op QSFP reset code Dennis Dalessandro
2016-05-12 17:22   ` [PATCH 05/15] IB/hfi1: Fix pio wait counter double increment Dennis Dalessandro
2016-05-12 17:23   ` [PATCH 06/15] IB/hfi1: Fix potential panic with sdma drained mechanism Dennis Dalessandro
2016-05-12 17:23   ` [PATCH 07/15] IB/hfi1: Improve performance of interval RB trees Dennis Dalessandro
2016-05-12 17:23   ` [PATCH 08/15] IB/hfi1: Remove unnecessary header Dennis Dalessandro
2016-05-12 17:23   ` [PATCH 09/15] IB/hfi1: Fix hfi_rcvhdr tracepoint Dennis Dalessandro
2016-05-12 17:23   ` [PATCH 10/15] IB/rdmavt: Increase CQ callback thread priority Dennis Dalessandro
2016-05-12 17:23   ` [PATCH 11/15] IB/hfi1: Correct log message strings Dennis Dalessandro
2016-05-12 17:23   ` [PATCH 12/15] IB/hfi1: Immediately apply congestion setting MAD Dennis Dalessandro
2016-05-12 17:23   ` [PATCH 13/15] IB/hfi1: Keep SC_USER as the last send context type Dennis Dalessandro
2016-05-12 17:23   ` [PATCH 14/15] ib_pack.h: Add opcode definition for send with invalidate Dennis Dalessandro
2016-05-12 17:24   ` [PATCH 15/15] IB/hfi1: Change hfi1_init loop to preserve error returns Dennis Dalessandro
2016-05-12 18:53   ` [PATCH 00/15] IB/hfi1, rdmavt, core: Misc fixes and improvements for 4.7 Doug Ledford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox