All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 00/14] qla2xxx: Bug Fixes and updates for target.
@ 2017-03-15 16:48 Himanshu Madhani
  2017-03-15 16:48 ` [PATCH v4 01/14] qla2xxx: Allow vref count to timeout on vport delete Himanshu Madhani
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Himanshu Madhani @ 2017-03-15 16:48 UTC (permalink / raw)
  To: target-devel, Bart.VanAssche, nab
  Cc: giridhar.malavali, linux-scsi, himanshu.madhani

Hi Nic,

Please consider this series for inclusion in target-pending.

This series contains following changes.

o Fix for the deadlock because of inconsistent lock usage reported by Bart.
o Added patch to submit non-critical MBX command via IOCB path.
o Improved T10-DIF/PI handling with target stack.
o Changed scsi host lookup method.
o Some minor bug fixes.

Changes from v3 --> v4

o Fixed regression repored by Bart in following patch.
"qla2xxx: Fix delayed response to command for loop mode/direct connect."

Note: Patch order has been changed as well from last series. This is to
isolate bug-fixes in front of improvements to narrow down offending patch.
Let me know if you would prefer me to submit series with same patch order
as v3.

Changes from v2 --> v3

o Updated patch to use waitq instead of while loop for waiting.
o Removed duplication of Target stack definitations for T10-DIF/PI.
o In addition, addressed review comments from Bart & Christoph.

Changes from v1 -> v2

o Rebased series based on scsi-target-for-v4.11 branch.

Please apply to target-pending.

Thanks,
Himanshu
 

Anil Gurumurthy (1):
  qla2xxx: Export DIF stats via debugfs

Himanshu Madhani (2):
  qla2xxx: Add DebugFS node to display Port Database
  qla2xxx: Update driver version to 9.00.00.00-k

Joe Carnuccio (1):
  qla2xxx: Allow vref count to timeout on vport delete.

Quinn Tran (10):
  qla2xxx: Fix memory leak for abts processing
  qla2xxx: Fix request queue corruption.
  qla2xxx: Fix inadequate lock protection for ABTS.
  qla2xxx: Fix sess_lock & hardware_lock lock order problem.
  qla2xxx: Allow relogin to proceed if remote login did not finish
  qla2xxx: Improve T10-DIF/PI handling in driver.
  qla2xxx: Add async new target notification
  qla2xxx: Use IOCB interface to submit non-critical MBX.
  qla2xxx: Change scsi host lookup method.
  qla2xxx: Fix delayed response to command for loop mode/direct connect.

 drivers/scsi/qla2xxx/Kconfig       |   1 +
 drivers/scsi/qla2xxx/qla_attr.c    |   4 +-
 drivers/scsi/qla2xxx/qla_dbg.h     |   1 +
 drivers/scsi/qla2xxx/qla_def.h     |  56 ++-
 drivers/scsi/qla2xxx/qla_dfs.c     | 107 +++++-
 drivers/scsi/qla2xxx/qla_gbl.h     |  18 +-
 drivers/scsi/qla2xxx/qla_init.c    |  85 ++---
 drivers/scsi/qla2xxx/qla_iocb.c    |  13 +-
 drivers/scsi/qla2xxx/qla_isr.c     |  41 +-
 drivers/scsi/qla2xxx/qla_mbx.c     | 304 +++++++++++++--
 drivers/scsi/qla2xxx/qla_mid.c     |  14 +-
 drivers/scsi/qla2xxx/qla_os.c      |  23 +-
 drivers/scsi/qla2xxx/qla_target.c  | 748 +++++++++++++++++++++++--------------
 drivers/scsi/qla2xxx/qla_target.h  |  39 +-
 drivers/scsi/qla2xxx/qla_version.h |   6 +-
 drivers/scsi/qla2xxx/tcm_qla2xxx.c |  49 ++-
 16 files changed, 1077 insertions(+), 432 deletions(-)

-- 
2.12.0

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

end of thread, other threads:[~2017-03-19  0:32 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-15 16:48 [PATCH v4 00/14] qla2xxx: Bug Fixes and updates for target Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 01/14] qla2xxx: Allow vref count to timeout on vport delete Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 02/14] qla2xxx: Fix memory leak for abts processing Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 03/14] qla2xxx: Fix request queue corruption Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 04/14] qla2xxx: Fix inadequate lock protection for ABTS Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 05/14] qla2xxx: Fix sess_lock & hardware_lock lock order problem Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 06/14] qla2xxx: Allow relogin to proceed if remote login did not finish Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 07/14] qla2xxx: Improve T10-DIF/PI handling in driver Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 08/14] qla2xxx: Export DIF stats via debugfs Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 09/14] qla2xxx: Add async new target notification Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 10/14] qla2xxx: Use IOCB interface to submit non-critical MBX Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 11/14] qla2xxx: Add DebugFS node to display Port Database Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 12/14] qla2xxx: Change scsi host lookup method Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 13/14] qla2xxx: Fix delayed response to command for loop mode/direct connect Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 14/14] qla2xxx: Update driver version to 9.00.00.00-k Himanshu Madhani
2017-03-19  0:32 ` [PATCH v4 00/14] qla2xxx: Bug Fixes and updates for target Nicholas A. Bellinger

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.