linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/13] staging/rdma/hfi1: Driver cleanup and misc fixes
@ 2015-11-17  2:59 Jubin John
       [not found] ` <1447729175-28745-1-git-send-email-jubin.john-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 16+ messages in thread
From: Jubin John @ 2015-11-17  2:59 UTC (permalink / raw)
  To: gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r,
	devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	dledford-H+wXaHxf7aLQT0dZR+AlfA,
	mike.marciniszyn-ral2JQCrhuEAvxtiuMwx3w,
	ira.weiny-ral2JQCrhuEAvxtiuMwx3w

Rebased this series on top of latest staging-next branch

Changes in v2:
01/13: Updated commit message with more information about changes in patch
04/13: Updated patch subject with "hfi1" instead of "hfi"
07/13: Refreshed patch based on new hfi patches in staging-next
12/13: Changed logic based on Dan's suggestions in
       http://marc.info/?l=linux-driver-devel&m=144723149431368&w=2 

Dean Luick (4):
  staging/rdma/hfi1: Fix downgrade race
  staging/rdma/hfi1: Remove unneeded variable index
  staging/rdma/hfi1: Read EFI variable for device description
  staging/rdma/hfi1: Adjust EPROM partitions, add EPROM commands

Harish Chegondi (1):
  staging/rdma/hfi1: Move s_sde to the read mostly portion of the
    hfi1_qp structure

Ira Weiny (1):
  staging/rdma/hfi1: Remove rcv bubbles code

Jubin John (3):
  staging/rdma/hfi1: Use BIT macro
  staging/rdma/hfi1: Add space between concatenated string elements
  staging/rdma/hfi1: Change default krcvqs

Mark F. Brown (1):
  staging/rdma/hfi1: change krcvqs module parameter type from byte to
    uint

Mike Marciniszyn (1):
  staging/rdma/hfi1: rework is_a0() and is_bx()

Vennila Megavannan (2):
  staging/rdma/hfi1: remove RxCtxRHQS from hfi1stats
  staging/rdma/hfi1: adding per SDMA engine stats to hfistats

 drivers/staging/rdma/hfi1/Makefile         |    2 +-
 drivers/staging/rdma/hfi1/chip.c           |  252 +++++++++++++++++++++-------
 drivers/staging/rdma/hfi1/chip.h           |   55 ++++---
 drivers/staging/rdma/hfi1/chip_registers.h |    2 +-
 drivers/staging/rdma/hfi1/common.h         |    4 +-
 drivers/staging/rdma/hfi1/diag.c           |    4 +-
 drivers/staging/rdma/hfi1/driver.c         |    2 +-
 drivers/staging/rdma/hfi1/efivar.c         |  169 +++++++++++++++++++
 drivers/staging/rdma/hfi1/efivar.h         |   60 +++++++
 drivers/staging/rdma/hfi1/eprom.c          |  119 ++++++++------
 drivers/staging/rdma/hfi1/file_ops.c       |   18 +--
 drivers/staging/rdma/hfi1/firmware.c       |    2 +-
 drivers/staging/rdma/hfi1/hfi.h            |   29 ++--
 drivers/staging/rdma/hfi1/init.c           |    8 +-
 drivers/staging/rdma/hfi1/mad.c            |   68 +-------
 drivers/staging/rdma/hfi1/pcie.c           |    4 +-
 drivers/staging/rdma/hfi1/qp.h             |    2 +-
 drivers/staging/rdma/hfi1/qsfp.h           |   10 +-
 drivers/staging/rdma/hfi1/sdma.c           |   17 ++-
 drivers/staging/rdma/hfi1/sdma.h           |    7 +
 drivers/staging/rdma/hfi1/verbs.h          |    8 +-
 include/uapi/rdma/hfi/hfi1_user.h          |   10 +-
 22 files changed, 587 insertions(+), 265 deletions(-)
 create mode 100644 drivers/staging/rdma/hfi1/efivar.c
 create mode 100644 drivers/staging/rdma/hfi1/efivar.h

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

end of thread, other threads:[~2015-12-21 21:46 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-17  2:59 [PATCH v2 00/13] staging/rdma/hfi1: Driver cleanup and misc fixes Jubin John
     [not found] ` <1447729175-28745-1-git-send-email-jubin.john-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-11-17  2:59   ` [PATCH v2 01/13] staging/rdma/hfi1: Use BIT macro Jubin John
     [not found]     ` <1447729175-28745-2-git-send-email-jubin.john-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-12-21 21:46       ` Greg KH
2015-11-17  2:59   ` [PATCH v2 02/13] staging/rdma/hfi1: Fix downgrade race Jubin John
2015-11-17  2:59   ` [PATCH v2 03/13] staging/rdma/hfi1: remove RxCtxRHQS from hfi1stats Jubin John
2015-11-17  2:59   ` [PATCH v2 04/13] staging/rdma/hfi1: Remove rcv bubbles code Jubin John
2015-11-17  2:59   ` [PATCH v2 05/13] staging/rdma/hfi1: Add space between concatenated string elements Jubin John
2015-11-17  2:59   ` [PATCH v2 06/13] staging/rdma/hfi1: Move s_sde to the read mostly portion of the hfi1_qp structure Jubin John
2015-11-17  2:59   ` [PATCH v2 07/13] staging/rdma/hfi1: rework is_a0() and is_bx() Jubin John
2015-11-17  2:59   ` [PATCH v2 08/13] staging/rdma/hfi1: change krcvqs module parameter type from byte to uint Jubin John
2015-11-17  2:59   ` [PATCH v2 09/13] staging/rdma/hfi1: Change default krcvqs Jubin John
2015-11-17  2:59   ` [PATCH v2 10/13] staging/rdma/hfi1: adding per SDMA engine stats to hfistats Jubin John
2015-11-17  2:59   ` [PATCH v2 11/13] staging/rdma/hfi1: Remove unneeded variable index Jubin John
2015-11-17  2:59   ` [PATCH v2 12/13] staging/rdma/hfi1: Read EFI variable for device description Jubin John
2015-11-17  2:59   ` [PATCH v2 13/13] staging/rdma/hfi1: Adjust EPROM partitions, add EPROM commands Jubin John
2015-12-09  0:33   ` [PATCH v2 00/13] staging/rdma/hfi1: Driver cleanup and misc fixes Jubin John

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).