public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/20] lpfc: Update lpfc to revision 11.2.0.10
@ 2017-03-04 17:30 jsmart2021
  2017-03-04 17:30 ` [PATCH 01/20] scsi: lpfc: remove redundant assignment of sgel jsmart2021
                   ` (20 more replies)
  0 siblings, 21 replies; 23+ messages in thread
From: jsmart2021 @ 2017-03-04 17:30 UTC (permalink / raw)
  To: linux-scsi, linux-nvme; +Cc: James Smart

From: James Smart <jsmart2021@gmail.com>

This set of patches are mainly cleanups and fixes to the large
nvme post that was recently integrated. It includes a patch to
break the mandate for both NVME and SCSI subystems.

James Smart (20):
  scsi: lpfc: remove redundant assignment of sgel
  scsi: lpfc: sanity check hrq is null before dereferencing it
  scsi: lpfc: don't dereference dma_buf->iocbq before null check
  scsi: lpfc: fix missing spin_unlock on sql_list_lock
  lpfc: Fix crash during Hardware error recovery on SLI3 adapters
  lpfc: Fix RCTL value on NVME LS request and response
  lpfc: Fix NVME CMD IU byte swapped word 1 problem
  lpfc: Fix IO submission if WQ is full
  lpfc: Fix nvme allocation bug on failed nvme_fc_register_localport
  lpfc: add NVME exchange aborts
  lpfc: Fix eh_deadline setting for sli3 adapters.
  lpfc: add transport eh_timed_out reference
  lpfc: Rework lpfc Kconfig for NVME options
  lpfc: Rename LPFC_MAX_EQ_DELAY to LPFC_MAX_EQ_DELAY_EQID_CNT
  lpfc: correct double print
  lpfc: remove dead sli3 nvme code
  lpfc: correct rdp diag portnames
  lpfc: code cleanups in NVME initiator base
  lpfc: code cleanups in NVME initiator discovery
  lpfc: revise version number to 11.2.0.10

 drivers/scsi/Kconfig             |  19 +++++--
 drivers/scsi/lpfc/lpfc.h         |   4 +-
 drivers/scsi/lpfc/lpfc_attr.c    |   9 +++-
 drivers/scsi/lpfc/lpfc_crtn.h    |   4 +-
 drivers/scsi/lpfc/lpfc_ct.c      |   2 +-
 drivers/scsi/lpfc/lpfc_debugfs.c |  22 --------
 drivers/scsi/lpfc/lpfc_els.c     |  22 +++++---
 drivers/scsi/lpfc/lpfc_hbadisc.c |  19 ++++---
 drivers/scsi/lpfc/lpfc_hw4.h     |   4 +-
 drivers/scsi/lpfc/lpfc_init.c    |  80 ++++++++++++++++++++++++-----
 drivers/scsi/lpfc/lpfc_mem.c     |   2 +-
 drivers/scsi/lpfc/lpfc_nvme.c    | 107 ++++++++++++++++++++++++++++++---------
 drivers/scsi/lpfc/lpfc_nvme.h    |   1 +
 drivers/scsi/lpfc/lpfc_nvmet.c   |  43 +++++++++++++---
 drivers/scsi/lpfc/lpfc_scsi.c    |   4 +-
 drivers/scsi/lpfc/lpfc_sli.c     |  68 +++++++++++++++++++++----
 drivers/scsi/lpfc/lpfc_sli4.h    |   6 +++
 drivers/scsi/lpfc/lpfc_version.h |   2 +-
 18 files changed, 312 insertions(+), 106 deletions(-)

-- 
2.5.0

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

end of thread, other threads:[~2017-03-07  4:58 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-04 17:30 [PATCH 00/20] lpfc: Update lpfc to revision 11.2.0.10 jsmart2021
2017-03-04 17:30 ` [PATCH 01/20] scsi: lpfc: remove redundant assignment of sgel jsmart2021
2017-03-04 17:30 ` [PATCH 02/20] scsi: lpfc: sanity check hrq is null before dereferencing it jsmart2021
2017-03-04 17:30 ` [PATCH 03/20] scsi: lpfc: don't dereference dma_buf->iocbq before null check jsmart2021
2017-03-04 17:30 ` [PATCH 04/20] scsi: lpfc: fix missing spin_unlock on sql_list_lock jsmart2021
2017-03-04 17:30 ` [PATCH 05/20] lpfc: Fix crash during Hardware error recovery on SLI3 adapters jsmart2021
2017-03-04 17:30 ` [PATCH 06/20] lpfc: Fix RCTL value on NVME LS request and response jsmart2021
2017-03-04 17:30 ` [PATCH 07/20] lpfc: Fix NVME CMD IU byte swapped word 1 problem jsmart2021
2017-03-04 17:30 ` [PATCH 08/20] lpfc: Fix IO submission if WQ is full jsmart2021
2017-03-04 17:30 ` [PATCH 09/20] lpfc: Fix nvme allocation bug on failed nvme_fc_register_localport jsmart2021
2017-03-04 17:30 ` [PATCH 10/20] lpfc: add NVME exchange aborts jsmart2021
2017-03-04 17:30 ` [PATCH 11/20] lpfc: Fix eh_deadline setting for sli3 adapters jsmart2021
2017-03-04 23:51   ` Laurence Oberman
2017-03-04 17:30 ` [PATCH 12/20] lpfc: add transport eh_timed_out reference jsmart2021
2017-03-04 17:30 ` [PATCH 13/20] lpfc: Rework lpfc Kconfig for NVME options jsmart2021
2017-03-04 17:30 ` [PATCH 14/20] lpfc: Rename LPFC_MAX_EQ_DELAY to LPFC_MAX_EQ_DELAY_EQID_CNT jsmart2021
2017-03-04 17:30 ` [PATCH 15/20] lpfc: correct double print jsmart2021
2017-03-04 17:30 ` [PATCH 16/20] lpfc: remove dead sli3 nvme code jsmart2021
2017-03-04 17:30 ` [PATCH 17/20] lpfc: correct rdp diag portnames jsmart2021
2017-03-04 17:30 ` [PATCH 18/20] lpfc: code cleanups in NVME initiator base jsmart2021
2017-03-04 17:30 ` [PATCH 19/20] lpfc: code cleanups in NVME initiator discovery jsmart2021
2017-03-04 17:30 ` [PATCH 20/20] lpfc: revise version number to 11.2.0.10 jsmart2021
2017-03-07  4:09 ` [PATCH 00/20] lpfc: Update lpfc to revision 11.2.0.10 Martin K. Petersen

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