linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/17] qla2xxx: Updates for scsi-misc-2.6.
@ 2010-07-23 10:28 giridhar.malavali
  2010-07-23 10:28 ` [PATCH 01/17] qla2xxx: Don't issue set or get port param MBC if invalid port loop id giridhar.malavali
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: giridhar.malavali @ 2010-07-23 10:28 UTC (permalink / raw)
  To: James.Bottomley
  Cc: giridhar.malavali, andrew.vasquez, madhu.iyengar, linux-scsi

From: Giridhar Malavali <giridhar.malavali@qlogic.com>

James,

Please apply these patches. 

Andrew Vasquez (3):
  qla2xxx: Correct extended sense-data handling.
  qla2xxx: Stop firmware before doing init firmware.
  qla2xxx: Cleanup some dead-code and make some functions static.

Arun Easi (1):
  qla2xxx: T10 DIF Type 2 support

Chad Dupuis (2):
  qla2xxx: Use GFF_ID to check FCP-SCSI FC4 type before logging into
    Nx_Ports
  qla2xxx: Add qla2x00_free_fcports() function

Duane Grigsby (1):
  qla2xxx: Propogate transport disrupted status for cable pull
    conditions for faster failover.

Giridhar Malavali (4):
  qla2xxx: Removed dependency for SRB structure for Marker processing
  qla2xxx: Updates for ISP82xx.
  qla2xxx: Rearranged and cleaned up the code for processing the
    pending commands.
  qla2xxx: Update copyright banner.

Harish Zunjarrao (2):
  qla2xxx: Add CT passthru support for ISP23xx adapters
  qla2xxx: Do not allow ELS Passthru commands for ISP23xx adapters

Madhuranath Iyengar (4):
  qla2xxx: Don't issue set or get port param MBC if invalid port loop
    id
  qla2xxx: Appropriately log FCP priority data messages
  qla2xxx: Check for golden firmware and show version if available
  qla2xxx: Don't issue set or get port param MBC if remote port is not
    logged in

 drivers/scsi/qla2xxx/qla_attr.c     |   29 +++-
 drivers/scsi/qla2xxx/qla_bsg.c      |   98 ++++++++---
 drivers/scsi/qla2xxx/qla_bsg.h      |    2 +-
 drivers/scsi/qla2xxx/qla_dbg.c      |    2 +-
 drivers/scsi/qla2xxx/qla_dbg.h      |    2 +-
 drivers/scsi/qla2xxx/qla_def.h      |   45 ++++--
 drivers/scsi/qla2xxx/qla_dfs.c      |    2 +-
 drivers/scsi/qla2xxx/qla_fw.h       |    2 +-
 drivers/scsi/qla2xxx/qla_gbl.h      |   23 +--
 drivers/scsi/qla2xxx/qla_gs.c       |   74 ++++++++-
 drivers/scsi/qla2xxx/qla_init.c     |  109 +++---------
 drivers/scsi/qla2xxx/qla_inline.h   |    2 +-
 drivers/scsi/qla2xxx/qla_iocb.c     |  253 ++++++++++++++--------------
 drivers/scsi/qla2xxx/qla_isr.c      |  152 ++++++++++++-----
 drivers/scsi/qla2xxx/qla_mbx.c      |    6 +-
 drivers/scsi/qla2xxx/qla_mid.c      |   58 +------
 drivers/scsi/qla2xxx/qla_nx.c       |  322 +++++------------------------------
 drivers/scsi/qla2xxx/qla_nx.h       |    5 +-
 drivers/scsi/qla2xxx/qla_os.c       |   67 +++----
 drivers/scsi/qla2xxx/qla_settings.h |    2 +-
 drivers/scsi/qla2xxx/qla_sup.c      |   49 ++++--
 drivers/scsi/qla2xxx/qla_version.h  |    2 +-
 22 files changed, 588 insertions(+), 718 deletions(-)


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

end of thread, other threads:[~2010-07-23 10:00 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-23 10:28 [PATCH 00/17] qla2xxx: Updates for scsi-misc-2.6 giridhar.malavali
2010-07-23 10:28 ` [PATCH 01/17] qla2xxx: Don't issue set or get port param MBC if invalid port loop id giridhar.malavali
2010-07-23 10:28 ` [PATCH 02/17] qla2xxx: Removed dependency for SRB structure for Marker processing giridhar.malavali
2010-07-23 10:28 ` [PATCH 03/17] qla2xxx: Appropriately log FCP priority data messages giridhar.malavali
2010-07-23 10:28 ` [PATCH 04/17] qla2xxx: Use GFF_ID to check FCP-SCSI FC4 type before logging into Nx_Ports giridhar.malavali
2010-07-23 10:28 ` [PATCH 05/17] qla2xxx: Check for golden firmware and show version if available giridhar.malavali
2010-07-23 10:28 ` [PATCH 06/17] qla2xxx: Correct extended sense-data handling giridhar.malavali
2010-07-23 10:28 ` [PATCH 07/17] qla2xxx: Propogate transport disrupted status for cable pull conditions for faster failover giridhar.malavali
2010-07-23 10:28 ` [PATCH 08/17] qla2xxx: Stop firmware before doing init firmware giridhar.malavali
2010-07-23 10:28 ` [PATCH 09/17] qla2xxx: Add qla2x00_free_fcports() function giridhar.malavali
2010-07-23 10:28 ` [PATCH 10/17] qla2xxx: Don't issue set or get port param MBC if remote port is not logged in giridhar.malavali
2010-07-23 10:28 ` [PATCH 11/17] qla2xxx: Add CT passthru support for ISP23xx adapters giridhar.malavali
2010-07-23 10:28 ` [PATCH 12/17] qla2xxx: Do not allow ELS Passthru commands " giridhar.malavali
2010-07-23 10:28 ` [PATCH 13/17] qla2xxx: Updates for ISP82xx giridhar.malavali
2010-07-23 10:28 ` [PATCH 14/17] qla2xxx: Rearranged and cleaned up the code for processing the pending commands giridhar.malavali
2010-07-23 10:28 ` [PATCH 15/17] qla2xxx: Update copyright banner giridhar.malavali
2010-07-23 10:28 ` [PATCH 16/17] qla2xxx: Cleanup some dead-code and make some functions static giridhar.malavali
2010-07-23 10:28 ` [PATCH 17/17] qla2xxx: T10 DIF Type 2 support giridhar.malavali

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).