All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] lpfc updates for 11.2.0.14
@ 2017-05-10 19:06 ` James Smart
  0 siblings, 0 replies; 69+ messages in thread
From: James Smart @ 2017-05-10 19:06 UTC (permalink / raw)
  To: linux-scsi, linux-nvme; +Cc: James Smart

This patch set provides a number of bug fixes, code cleanups, and error
handling, mostly in the nvme area of lpfc.

There is one new feature in the series to add MDS diagnostics support

The patches were cut against the Martin's 4.12/scsi-fixes tree.
There are no outside dependencies. The patches should merge via
Martin's tree. 


James Smart (15):
  lpfc: Fix used-RPI accounting problem.
  lpfc: Fix system crash when port is reset.
  lpfc: Adding additional stats counters for nvme.
  lpfc: Fix nvmet RQ resource needs for large block writes.
  lpfc: Fix NVMEI driver not decrementing counter causing bad rport
    state.
  lpfc: Fix NMI watchdog assertions when running nvmet IOPS tests
  lpfc: Separate NVMET data buffer pool fir ELS/CT.
  lpfc: Separate NVMET RQ buffer posting from IO resources
    SGL/iocbq/context
  lpfc: Added recovery logic for running out of NVMET IO context
    resources
  lpfc: Fix NVME I+T not registering NVME as a supported FC4 type
  lpfc: Fix debugfs root inode "lpfc" not getting deleted on driver
    unload.
  lpfc: Cleanup entry_repost settings on SLI4 queues
  lpfc: Fix NVMEI's handling of NVMET's PRLI response attributes
  lpfc: Add MDS Diagnostic support.
  lpfc: update version to 11.2.0.14

 drivers/scsi/lpfc/lpfc.h           |  23 ++-
 drivers/scsi/lpfc/lpfc_attr.c      |  45 ++--
 drivers/scsi/lpfc/lpfc_crtn.h      |  11 +-
 drivers/scsi/lpfc/lpfc_ct.c        |   1 +
 drivers/scsi/lpfc/lpfc_debugfs.c   |  69 ++++---
 drivers/scsi/lpfc/lpfc_disc.h      |   1 +
 drivers/scsi/lpfc/lpfc_els.c       |  19 +-
 drivers/scsi/lpfc/lpfc_hbadisc.c   |   9 +-
 drivers/scsi/lpfc/lpfc_hw4.h       |  16 +-
 drivers/scsi/lpfc/lpfc_init.c      | 137 ++++--------
 drivers/scsi/lpfc/lpfc_mem.c       | 100 +++------
 drivers/scsi/lpfc/lpfc_nportdisc.c |   6 +
 drivers/scsi/lpfc/lpfc_nvmet.c     | 412 ++++++++++++++++++++++++++++++-------
 drivers/scsi/lpfc/lpfc_nvmet.h     |  14 +-
 drivers/scsi/lpfc/lpfc_sli.c       | 357 +++++++++++++++++++++++++-------
 drivers/scsi/lpfc/lpfc_sli4.h      |  18 +-
 drivers/scsi/lpfc/lpfc_version.h   |   2 +-
 17 files changed, 829 insertions(+), 411 deletions(-)

-- 
2.11.0

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

end of thread, other threads:[~2017-05-15 22:13 UTC | newest]

Thread overview: 69+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-10 19:06 [PATCH 00/15] lpfc updates for 11.2.0.14 James Smart
2017-05-10 19:06 ` James Smart
2017-05-10 19:06 ` [PATCH 01/15] lpfc: Fix used-RPI accounting problem James Smart
2017-05-10 19:06   ` James Smart
2017-05-11  6:04   ` Hannes Reinecke
2017-05-11  6:04     ` Hannes Reinecke
2017-05-10 19:07 ` [PATCH 02/15] lpfc: Fix system crash when port is reset James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  6:05   ` Hannes Reinecke
2017-05-11  6:05     ` Hannes Reinecke
2017-05-15 19:31   ` Guilherme G. Piccoli
2017-05-10 19:07 ` [PATCH 03/15] lpfc: Adding additional stats counters for nvme James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  6:06   ` Hannes Reinecke
2017-05-11  6:06     ` Hannes Reinecke
2017-05-10 19:07 ` [PATCH 04/15] lpfc: Fix nvmet RQ resource needs for large block writes James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  6:18   ` Hannes Reinecke
2017-05-11  6:18     ` Hannes Reinecke
2017-05-15 21:48     ` James Smart
2017-05-15 21:48       ` James Smart
2017-05-10 19:07 ` [PATCH 05/15] lpfc: Fix NVMEI driver not decrementing counter causing bad rport state James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  6:18   ` Hannes Reinecke
2017-05-11  6:18     ` Hannes Reinecke
2017-05-10 19:07 ` [PATCH 06/15] lpfc: Fix NMI watchdog assertions when running nvmet IOPS tests James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  6:21   ` Hannes Reinecke
2017-05-11  6:21     ` Hannes Reinecke
2017-05-10 19:07 ` [PATCH 07/15] lpfc: Separate NVMET data buffer pool fir ELS/CT James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  6:22   ` Hannes Reinecke
2017-05-11  6:22     ` Hannes Reinecke
2017-05-10 19:07 ` [PATCH 08/15] lpfc: Separate NVMET RQ buffer posting from IO resources SGL/iocbq/context James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  7:23   ` Hannes Reinecke
2017-05-11  7:23     ` Hannes Reinecke
2017-05-10 19:07 ` [PATCH 09/15] lpfc: Added recovery logic for running out of NVMET IO context resources James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  7:24   ` Hannes Reinecke
2017-05-11  7:24     ` Hannes Reinecke
2017-05-10 19:07 ` [PATCH 10/15] lpfc: Fix NVME I+T not registering NVME as a supported FC4 type James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  7:35   ` Hannes Reinecke
2017-05-11  7:35     ` Hannes Reinecke
2017-05-15 21:57     ` James Smart
2017-05-15 21:57       ` James Smart
2017-05-10 19:07 ` [PATCH 11/15] lpfc: Fix debugfs root inode "lpfc" not getting deleted on driver unload James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  7:45   ` Hannes Reinecke
2017-05-11  7:45     ` Hannes Reinecke
2017-05-10 19:07 ` [PATCH 12/15] lpfc: Cleanup entry_repost settings on SLI4 queues James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  7:49   ` Hannes Reinecke
2017-05-11  7:49     ` Hannes Reinecke
2017-05-15 22:13     ` James Smart
2017-05-15 22:13       ` James Smart
2017-05-10 19:07 ` [PATCH 13/15] lpfc: Fix NVMEI's handling of NVMET's PRLI response attributes James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  7:50   ` Hannes Reinecke
2017-05-11  7:50     ` Hannes Reinecke
2017-05-10 19:07 ` [PATCH 14/15] lpfc: Add MDS Diagnostic support James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  7:51   ` Hannes Reinecke
2017-05-11  7:51     ` Hannes Reinecke
2017-05-10 19:07 ` [PATCH 15/15] lpfc: update version to 11.2.0.14 James Smart
2017-05-10 19:07   ` James Smart
2017-05-11  7:51   ` Hannes Reinecke
2017-05-11  7:51     ` Hannes Reinecke

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.