All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/31] qla2xxx: Patches for scsi "misc" branch
@ 2017-08-23 22:04 Himanshu Madhani
  2017-08-23 22:04 ` [PATCH 01/31] qla2xxx: Correction to vha->vref_count timeout Himanshu Madhani
                   ` (31 more replies)
  0 siblings, 32 replies; 33+ messages in thread
From: Himanshu Madhani @ 2017-08-23 22:04 UTC (permalink / raw)
  To: James.Bottomley, martin.petersen; +Cc: himanshu.madhani, linux-scsi

Hi Martin,

This series contains various bug fixes and driver updates. Please apply
the following patches to the 4.14/scsi-queue branch at your earliest
convenience for inclusion in the next mainline merge window.

Thanks,
Himanshu 


Darren Trap (1):
  qla2xxx: Fix WWPN/WWNN in debug message

Duane Grigsby (2):
  qla2xxx: Add command completion for error path
  qla2xxx: Fix system panic due to pointer access problem

Giridhar Malavali (1):
  qla2xxx: Ability to process multiple SGEs in Command SGL for CT
    passthrough commands.

Himanshu Madhani (3):
  qla2xxx: Update fw_started flags at qpair creation.
  qla2xxx: Enable Async TMF processing
  qla2xxx: Update driver version to 10.00.00.01-k

Joe Carnuccio (10):
  qla2xxx: Correction to vha->vref_count timeout
  qla2xxx: Prevent sp->free null/uninitialized pointer dereference.
  qla2xxx: Use sp->free instead of hard coded call.
  qla2xxx: Move logging default mask to execute once only.
  qla2xxx: Add timeout ability to wait_for_sess_deletion().
  qla2xxx: Allow SNS fabric login to be retried
  qla2xxx: Print correct mailbox registers in failed summary
  qla2xxx: Remove potential macro parameter side-effect in
    ql_dump_regs()
  qla2xxx: Add LR distance support from nvram bit
  qla2xxx: Skip zero queue count entry during FW dump capture

Michael Hernandez (2):
  qla2xxx: Fix target multiqueue configuration
  qla2xxx: Increase ql2xmaxqdepth to 64

Quinn Tran (8):
  qla2xxx: Fix NPIV host enable after chip reset
  qla2xxx: Remove extra register read
  qla2xxx: Change ha->wq max_active value to default
  qla2xxx: Use fabric name for Get Port Speed command
  qla2xxx: Add ability to autodetect SFP type
  qla2xxx: Fix task mgmt handling for NPIV
  qla2xxx: Cleanup NPIV host in target mode during config teardown
  qla2xxx: Recheck session state after RSCN

Sawan Chandak (4):
  qla2xxx: Handle PCIe error for driver
  qla2xxx: Use BIT_6 to acquire FAWWPN from switch
  qla2xxx: Add support for minimum link speed
  qla2xxx: Do not call abort handler function during chip reset

 drivers/scsi/qla2xxx/qla_attr.c    |  78 ++++++++-------
 drivers/scsi/qla2xxx/qla_dbg.c     |   8 +-
 drivers/scsi/qla2xxx/qla_def.h     | 105 +++++++++++++++++++-
 drivers/scsi/qla2xxx/qla_fw.h      |  28 ++++--
 drivers/scsi/qla2xxx/qla_gbl.h     |   7 +-
 drivers/scsi/qla2xxx/qla_gs.c      |  18 ++--
 drivers/scsi/qla2xxx/qla_init.c    | 181 ++++++++++++++++++++++++++++++-----
 drivers/scsi/qla2xxx/qla_iocb.c    |  55 +++++++----
 drivers/scsi/qla2xxx/qla_isr.c     |  25 ++---
 drivers/scsi/qla2xxx/qla_mbx.c     | 190 ++++++++++++++++++++++++++++++++-----
 drivers/scsi/qla2xxx/qla_mid.c     |  14 ++-
 drivers/scsi/qla2xxx/qla_mr.c      |   7 +-
 drivers/scsi/qla2xxx/qla_nvme.c    |  21 +++-
 drivers/scsi/qla2xxx/qla_os.c      |  91 +++++++++++++++---
 drivers/scsi/qla2xxx/qla_target.c  |  25 +++--
 drivers/scsi/qla2xxx/qla_target.h  |   2 +
 drivers/scsi/qla2xxx/qla_tmpl.c    |  19 ++--
 drivers/scsi/qla2xxx/qla_version.h |   2 +-
 18 files changed, 696 insertions(+), 180 deletions(-)

-- 
2.12.0

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

end of thread, other threads:[~2017-08-24  3:20 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-23 22:04 [PATCH 00/31] qla2xxx: Patches for scsi "misc" branch Himanshu Madhani
2017-08-23 22:04 ` [PATCH 01/31] qla2xxx: Correction to vha->vref_count timeout Himanshu Madhani
2017-08-23 22:04 ` [PATCH 02/31] qla2xxx: Fix target multiqueue configuration Himanshu Madhani
2017-08-23 22:04 ` [PATCH 03/31] qla2xxx: Update fw_started flags at qpair creation Himanshu Madhani
2017-08-23 22:04 ` [PATCH 04/31] qla2xxx: Add command completion for error path Himanshu Madhani
2017-08-23 22:04 ` [PATCH 05/31] qla2xxx: Fix WWPN/WWNN in debug message Himanshu Madhani
2017-08-23 22:05 ` [PATCH 06/31] qla2xxx: Handle PCIe error for driver Himanshu Madhani
2017-08-23 22:05 ` [PATCH 07/31] qla2xxx: Fix system panic due to pointer access problem Himanshu Madhani
2017-08-23 22:05 ` [PATCH 08/31] qla2xxx: Use BIT_6 to acquire FAWWPN from switch Himanshu Madhani
2017-08-23 22:05 ` [PATCH 09/31] qla2xxx: Fix NPIV host enable after chip reset Himanshu Madhani
2017-08-23 22:05 ` [PATCH 10/31] qla2xxx: Remove extra register read Himanshu Madhani
2017-08-23 22:05 ` [PATCH 11/31] qla2xxx: Change ha->wq max_active value to default Himanshu Madhani
2017-08-23 22:05 ` [PATCH 12/31] qla2xxx: Use fabric name for Get Port Speed command Himanshu Madhani
2017-08-23 22:05 ` [PATCH 13/31] qla2xxx: Add ability to autodetect SFP type Himanshu Madhani
2017-08-23 22:05 ` [PATCH 14/31] qla2xxx: Prevent sp->free null/uninitialized pointer dereference Himanshu Madhani
2017-08-23 22:05 ` [PATCH 15/31] qla2xxx: Use sp->free instead of hard coded call Himanshu Madhani
2017-08-23 22:05 ` [PATCH 16/31] qla2xxx: Move logging default mask to execute once only Himanshu Madhani
2017-08-23 22:05 ` [PATCH 17/31] qla2xxx: Add timeout ability to wait_for_sess_deletion() Himanshu Madhani
2017-08-23 22:05 ` [PATCH 18/31] qla2xxx: Allow SNS fabric login to be retried Himanshu Madhani
2017-08-23 22:05 ` [PATCH 19/31] qla2xxx: Fix task mgmt handling for NPIV Himanshu Madhani
2017-08-23 22:05 ` [PATCH 20/31] qla2xxx: Print correct mailbox registers in failed summary Himanshu Madhani
2017-08-23 22:05 ` [PATCH 21/31] qla2xxx: Remove potential macro parameter side-effect in ql_dump_regs() Himanshu Madhani
2017-08-23 22:05 ` [PATCH 22/31] qla2xxx: Add support for minimum link speed Himanshu Madhani
2017-08-23 22:05 ` [PATCH 23/31] qla2xxx: Add LR distance support from nvram bit Himanshu Madhani
2017-08-23 22:05 ` [PATCH 24/31] qla2xxx: Cleanup NPIV host in target mode during config teardown Himanshu Madhani
2017-08-23 22:05 ` [PATCH 25/31] qla2xxx: Enable Async TMF processing Himanshu Madhani
2017-08-23 22:05 ` [PATCH 26/31] qla2xxx: Increase ql2xmaxqdepth to 64 Himanshu Madhani
2017-08-23 22:05 ` [PATCH 27/31] qla2xxx: Recheck session state after RSCN Himanshu Madhani
2017-08-23 22:05 ` [PATCH 28/31] qla2xxx: Skip zero queue count entry during FW dump capture Himanshu Madhani
2017-08-23 22:05 ` [PATCH 29/31] qla2xxx: Ability to process multiple SGEs in Command SGL for CT passthrough commands Himanshu Madhani
2017-08-23 22:05 ` [PATCH 30/31] qla2xxx: Do not call abort handler function during chip reset Himanshu Madhani
2017-08-23 22:05 ` [PATCH 31/31] qla2xxx: Update driver version to 10.00.00.01-k Himanshu Madhani
2017-08-24  3:20 ` [PATCH 00/31] qla2xxx: Patches for scsi "misc" branch Martin K. Petersen

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.