public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH for-next 00/11] IB/hfi1: Driver fixes for 11/6/2017
@ 2017-11-06 14:38 Dennis Dalessandro
       [not found] ` <20171106143510.27539.65950.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Dennis Dalessandro @ 2017-11-06 14:38 UTC (permalink / raw)
  To: dledford-H+wXaHxf7aLQT0dZR+AlfA
  Cc: Mike Marciniszyn, Jan Sokolowski, Jakub Byczkowski,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA, Ira Weiny, Duane McCrory,
	Alex Estrin, Michael J. Ruhl, Dean Luick, Kamenee Arumugam,
	Grzegorz Morys, Don Hiatt, Niranjana Vishwanathapura,
	Sebastian Sanchez, Dan Carpenter

Hi Doug,

More fixes for our drivers. Nothing scary or out of the ordinary here. There
is a core change, but it is for extended lids. This does include a patch
suggested by Dan and is based off of his patch and the ensuing discussion on the
list.

As always patches available for browsing at:
https://github.com/ddalessa/kernel/tree/for-4.15

---

Dennis Dalessandro (1):
      IB/hfi1: Handle initial value of 0 for CCTI setting

Don Hiatt (2):
      IB/core: Convert OPA AH to IB for Extended LIDs only
      IB/hfi1: Mask upper 16Bits of Extended LID prior to rvt_cq_entry

Grzegorz Morys (1):
      IB/hfi1: Prohibit invalid Init to Armed state transition

Jakub Byczkowski (1):
      IB/hfi1: Reduce 8051 command timeout

Jan Sokolowski (3):
      IB/hfi1: Allow MgmtAllowed on B2B setups
      IB/hfi1: Remove unnecessary if check
      IB/hfi1: Send 'reboot' as planned down remote reason

Kamenee Arumugam (1):
      IB/hfi1: Remove wrapper function in mmu_rb

Mike Marciniszyn (1):
      IB/hfi1: Fix a wrapping test to insure the correct timeout

Niranjana Vishwanathapura (1):
      IB/hfi1: Do not allocate PIO send contexts for VNIC


 drivers/infiniband/core/uverbs_marshall.c |    3 +-
 drivers/infiniband/hw/hfi1/chip.c         |   55 +++++------------------------
 drivers/infiniband/hw/hfi1/chip.h         |    2 +
 drivers/infiniband/hw/hfi1/driver.c       |    5 +--
 drivers/infiniband/hw/hfi1/hfi.h          |    3 ++
 drivers/infiniband/hw/hfi1/init.c         |    3 +-
 drivers/infiniband/hw/hfi1/intr.c         |   43 +++++++++++++++++++++++
 drivers/infiniband/hw/hfi1/mad.c          |   44 ++++++++++++++---------
 drivers/infiniband/hw/hfi1/mad.h          |    2 +
 drivers/infiniband/hw/hfi1/mmu_rb.c       |   24 ++++---------
 drivers/infiniband/hw/hfi1/pio.c          |   17 ---------
 drivers/infiniband/hw/hfi1/pio.h          |    6 ---
 drivers/infiniband/hw/hfi1/rc.c           |    4 +-
 drivers/infiniband/hw/hfi1/ruc.c          |    2 +
 drivers/infiniband/hw/hfi1/uc.c           |    2 +
 drivers/infiniband/hw/hfi1/ud.c           |    6 ++-
 drivers/infiniband/hw/hfi1/user_sdma.c    |   30 ++++++++--------
 drivers/infiniband/hw/hfi1/vnic_main.c    |   37 +-------------------
 18 files changed, 118 insertions(+), 170 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] 13+ messages in thread

end of thread, other threads:[~2017-11-13 20:55 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-06 14:38 [PATCH for-next 00/11] IB/hfi1: Driver fixes for 11/6/2017 Dennis Dalessandro
     [not found] ` <20171106143510.27539.65950.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-11-06 14:38   ` [PATCH for-next 01/11] IB/hfi1: Allow MgmtAllowed on B2B setups Dennis Dalessandro
2017-11-06 14:38   ` [PATCH for-next 02/11] IB/hfi1: Reduce 8051 command timeout Dennis Dalessandro
2017-11-06 14:38   ` [PATCH for-next 03/11] IB/hfi1: Remove wrapper function in mmu_rb Dennis Dalessandro
2017-11-06 14:38   ` [PATCH for-next 04/11] IB/hfi1: Fix a wrapping test to insure the correct timeout Dennis Dalessandro
2017-11-06 14:38   ` [PATCH for-next 05/11] IB/hfi1: Remove unnecessary if check Dennis Dalessandro
2017-11-06 14:38   ` [PATCH for-next 06/11] IB/hfi1: Do not allocate PIO send contexts for VNIC Dennis Dalessandro
2017-11-06 14:38   ` [PATCH for-next 07/11] IB/hfi1: Prohibit invalid Init to Armed state transition Dennis Dalessandro
2017-11-06 14:39   ` [PATCH for-next 08/11] IB/hfi1: Send 'reboot' as planned down remote reason Dennis Dalessandro
2017-11-06 14:39   ` [PATCH for-next 09/11] IB/core: Convert OPA AH to IB for Extended LIDs only Dennis Dalessandro
2017-11-06 14:39   ` [PATCH for-next 10/11] IB/hfi1: Mask upper 16Bits of Extended LID prior to rvt_cq_entry Dennis Dalessandro
2017-11-06 14:39   ` [PATCH for-next 11/11] IB/hfi1: Handle initial value of 0 for CCTI setting Dennis Dalessandro
2017-11-13 20:55   ` [PATCH for-next 00/11] IB/hfi1: Driver fixes for 11/6/2017 Doug Ledford

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