All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/22]  qla2xxx: Bug fixes for 4.15-rc2
@ 2017-12-04 22:44 Himanshu Madhani
  2017-12-04 22:44 ` [PATCH v3 01/22] qla2xxx: Fix system crash for Notify ack timeout handling Himanshu Madhani
                   ` (22 more replies)
  0 siblings, 23 replies; 27+ messages in thread
From: Himanshu Madhani @ 2017-12-04 22:44 UTC (permalink / raw)
  To: James.Bottomley, martin.petersen; +Cc: himanshu.madhani, linux-scsi

Hi Martin,

This series contains bug fixes discovered during error handling test
cases for large fabric.

Please apply this series to 4.15-rc2 at your earliest convenience.

Changes from v2 -> v3

o Added Reviewed-by tag from Hannes. 
o Fixed Spelling mistake in patch 7.

Changes from v1 -> v2

o Updated patch description for patch 14 as per Bart's suggestion.

Thanks,
Himanshu
 
Giridhar Malavali (2):
  qla2xxx: Defer processing of GS IOCB calls
  qla2xxx: Remove aborting ELS IOCB call issued as part of timeout.

Himanshu Madhani (2):
  qla2xxx: Fix memory leak in dual/target mode
  qla2xxx: Update driver version to 10.00.00.03-k

Quinn Tran (17):
  qla2xxx: Fix system crash for Notify ack timeout handling
  qla2xxx: Fix gpnid error processing
  qla2xxx: Move session delete to driver work queue
  qla2xxx: Skip IRQ affinity for Target QPairs
  qla2xxx: Fix re-login for Nport Handle in use
  qla2xxx: Retry switch command on time out
  qla2xxx: Serialize GPNID for multiple RSCN
  qla2xxx: Fix login state machine stuck at GPDB
  qla2xxx: Relogin to target port on a cable swap
  qla2xxx: Fix Relogin being triggered too fast
  qla2xxx: Clear send ELS LOGO flag after target re-login
  qla2xxx: Fix PRLI state check
  qla2xxx: Fix abort command deadlock due to spinlock
  qla2xxx: Replace fcport alloc with qla2x00_alloc_fcport
  qla2xxx: Fix scan state field for fcport
  qla2xxx: Clear loop id after delete
  qla2xxx: Fix system crash in qlt_plogi_ack_unref

Sawan Chandak (1):
  qla2xxx: Fix NPIV host cleanup in target mode

 drivers/scsi/qla2xxx/qla_def.h     |  49 ++++----
 drivers/scsi/qla2xxx/qla_gs.c      | 230 ++++++++++++++++++++++++++++++-------
 drivers/scsi/qla2xxx/qla_init.c    |  69 +++++++++--
 drivers/scsi/qla2xxx/qla_iocb.c    |  13 ---
 drivers/scsi/qla2xxx/qla_isr.c     |   7 +-
 drivers/scsi/qla2xxx/qla_mbx.c     |   3 +-
 drivers/scsi/qla2xxx/qla_mid.c     |  42 ++++---
 drivers/scsi/qla2xxx/qla_os.c      |  78 ++++++++++---
 drivers/scsi/qla2xxx/qla_target.c  |  60 +++++++---
 drivers/scsi/qla2xxx/qla_version.h |   2 +-
 10 files changed, 405 insertions(+), 148 deletions(-)

-- 
2.12.0

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

end of thread, other threads:[~2017-12-07  3:51 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-04 22:44 [PATCH v3 00/22] qla2xxx: Bug fixes for 4.15-rc2 Himanshu Madhani
2017-12-04 22:44 ` [PATCH v3 01/22] qla2xxx: Fix system crash for Notify ack timeout handling Himanshu Madhani
2017-12-04 22:44 ` [PATCH v3 02/22] qla2xxx: Fix gpnid error processing Himanshu Madhani
2017-12-04 22:44 ` [PATCH v3 03/22] qla2xxx: Move session delete to driver work queue Himanshu Madhani
2017-12-04 22:44 ` [PATCH v3 04/22] qla2xxx: Skip IRQ affinity for Target QPairs Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 05/22] qla2xxx: Fix re-login for Nport Handle in use Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 06/22] qla2xxx: Retry switch command on time out Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 07/22] qla2xxx: Serialize GPNID for multiple RSCN Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 08/22] qla2xxx: Fix login state machine stuck at GPDB Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 09/22] qla2xxx: Fix NPIV host cleanup in target mode Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 10/22] qla2xxx: Relogin to target port on a cable swap Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 11/22] qla2xxx: Fix Relogin being triggered too fast Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 12/22] qla2xxx: Clear send ELS LOGO flag after target re-login Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 13/22] qla2xxx: Fix PRLI state check Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 14/22] qla2xxx: Fix abort command deadlock due to spinlock Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 15/22] qla2xxx: Replace fcport alloc with qla2x00_alloc_fcport Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 16/22] qla2xxx: Fix scan state field for fcport Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 17/22] qla2xxx: Clear loop id after delete Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 18/22] qla2xxx: Defer processing of GS IOCB calls Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 19/22] qla2xxx: Remove aborting ELS IOCB call issued as part of timeout Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 20/22] qla2xxx: Fix system crash in qlt_plogi_ack_unref Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 21/22] qla2xxx: Fix memory leak in dual/target mode Himanshu Madhani
2017-12-04 22:45 ` [PATCH v3 22/22] qla2xxx: Update driver version to 10.00.00.03-k Himanshu Madhani
2017-12-05  2:24 ` [PATCH v3 00/22] qla2xxx: Bug fixes for 4.15-rc2 Martin K. Petersen
2017-12-05  5:28   ` Madhani, Himanshu
2017-12-07  2:43     ` Martin K. Petersen
2017-12-07  3:51       ` Madhani, Himanshu

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.