linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/29] qla2xxx: Patches for scsi-misc.
@ 2012-02-09 19:15 Chad Dupuis
  2012-02-09 19:15 ` [PATCH 01/29] qla2xxx: Enhanced the dump routines to capture multiple request and response queues Chad Dupuis
                   ` (28 more replies)
  0 siblings, 29 replies; 31+ messages in thread
From: Chad Dupuis @ 2012-02-09 19:15 UTC (permalink / raw)
  To: jbottomley; +Cc: giridhar.malavali, chad.dupuis, andrew.vasquez, linux-scsi

Hi James,

Please apply the following patches to scsi-misc-2.6 at your
earliest convenience for inclusion in the next mainline merge window.

Thanks,
Chad

Andrew Vasquez (6):
  qla2xxx: Use a valid enode-mac if none defined.
  qla2xxx: Use consistent DL mask for ELS/CT passthru requests.
  qla2xxx: Perform implicit logout during rport tear-down.
  qla2xxx: Prep zero-length BSG data-transfer requests.
  qla2xxx: Reduce mbx-command timeout for Login/Logout requests.
  qla2xxx: Cache swl during fabric discovery.

Arun Easi (8):
  qla2xxx: Handle change notifications based on switch scan results.
  qla2xxx: Fix ql_dbg arguments.
  qla2xxx: Add new message when a new loopid is assigned.
  qla2xxx: Log messages to use correct vha.
  qla2xxx: Handle device mapping changes due to device logout.
  qla2xxx: Fix incorrect register access in qla2x00_start_iocbs().
  qla2xxx: Stop iteration after first failure in *_id functions.
  qla2xxx: Avoid invalid request queue dereference for bad response
    packets.

Chad Dupuis (8):
  qla2xxx: Increase speed of flash access in ISP82xx adapters to
    improve firmware load speed.
  qla2xxx: Handle failure cases during fabric_login
  qla2xxx: Print mailbox command opcode and return code when a command
    times out.
  qla2xxx: Convert remaining printk's to ql_log format.
  qla2xxx: Use ql_log* #define's in ql_log() and ql_log_pci().
  qla2xxx: Perform firmware dump procedure on mailbox command timeout.
  qla2xxx: Update LICENSE.qla2xxx.
  qla2xxx: Add ha->max_fibre_devices to keep track of the maximum
    number of targets.

Giridhar Malavali (4):
  qla2xxx: Enhanced the dump routines to capture multiple request and
    response queues.
  qla2xxx: Enhancements to support ISP83xx.
  qla2xxx: Consolidation of SRB processing.
  qla2xxx: Change the log message when previous dump is available to
    retrieve for ISP82xx.

Joe Carnuccio (3):
  qla2xxx: Correct print format for edc ql_log() calls.
  qla2xxx: Return blank sysfs string on initial get thermal failure.
  qla2xxx: Remove EDC sysfs interface.

 Documentation/scsi/LICENSE.qla2xxx |   41 +---
 drivers/scsi/qla2xxx/qla_attr.c    |  177 ++---------
 drivers/scsi/qla2xxx/qla_bsg.c     |  120 ++++----
 drivers/scsi/qla2xxx/qla_dbg.c     |  630 ++++++++++++++++++++++++++++++++++--
 drivers/scsi/qla2xxx/qla_dbg.h     |   63 ++++
 drivers/scsi/qla2xxx/qla_def.h     |  117 ++++---
 drivers/scsi/qla2xxx/qla_dfs.c     |    2 +-
 drivers/scsi/qla2xxx/qla_fw.h      |   13 +
 drivers/scsi/qla2xxx/qla_gbl.h     |   22 +-
 drivers/scsi/qla2xxx/qla_gs.c      |   84 ++++--
 drivers/scsi/qla2xxx/qla_init.c    |  540 ++++++++++++-------------------
 drivers/scsi/qla2xxx/qla_inline.h  |   51 +++-
 drivers/scsi/qla2xxx/qla_iocb.c    |  167 +++++-----
 drivers/scsi/qla2xxx/qla_isr.c     |  445 +++++++++++---------------
 drivers/scsi/qla2xxx/qla_mbx.c     |  410 ++++++++++++++++++-----
 drivers/scsi/qla2xxx/qla_mid.c     |    2 +-
 drivers/scsi/qla2xxx/qla_nx.c      |   90 ++---
 drivers/scsi/qla2xxx/qla_nx.h      |    3 +-
 drivers/scsi/qla2xxx/qla_os.c      |  432 ++++++++++++++++---------
 drivers/scsi/qla2xxx/qla_sup.c     |  148 ++++++++-
 20 files changed, 2197 insertions(+), 1360 deletions(-)



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

end of thread, other threads:[~2012-02-19 14:33 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-09 19:15 [PATCH 00/29] qla2xxx: Patches for scsi-misc Chad Dupuis
2012-02-09 19:15 ` [PATCH 01/29] qla2xxx: Enhanced the dump routines to capture multiple request and response queues Chad Dupuis
2012-02-09 19:15 ` [PATCH 02/29] qla2xxx: Enhancements to support ISP83xx Chad Dupuis
2012-02-09 19:15 ` [PATCH 03/29] qla2xxx: Use a valid enode-mac if none defined Chad Dupuis
2012-02-09 19:15 ` [PATCH 04/29] qla2xxx: Consolidation of SRB processing Chad Dupuis
2012-02-09 19:15 ` [PATCH 05/29] qla2xxx: Use consistent DL mask for ELS/CT passthru requests Chad Dupuis
2012-02-09 19:15 ` [PATCH 06/29] qla2xxx: Correct print format for edc ql_log() calls Chad Dupuis
2012-02-09 19:15 ` [PATCH 07/29] qla2xxx: Handle change notifications based on switch scan results Chad Dupuis
2012-02-09 19:15 ` [PATCH 08/29] qla2xxx: Return blank sysfs string on initial get thermal failure Chad Dupuis
2012-02-09 19:15 ` [PATCH 09/29] qla2xxx: Increase speed of flash access in ISP82xx adapters to improve firmware load speed Chad Dupuis
2012-02-09 19:15 ` [PATCH 10/29] qla2xxx: Handle failure cases during fabric_login Chad Dupuis
2012-02-09 19:15 ` [PATCH 11/29] qla2xxx: Perform implicit logout during rport tear-down Chad Dupuis
2012-02-09 19:15 ` [PATCH 12/29] qla2xxx: Prep zero-length BSG data-transfer requests Chad Dupuis
2012-02-09 19:15 ` [PATCH 13/29] qla2xxx: Reduce mbx-command timeout for Login/Logout requests Chad Dupuis
2012-02-09 19:15 ` [PATCH 14/29] qla2xxx: Print mailbox command opcode and return code when a command times out Chad Dupuis
2012-02-09 19:15 ` [PATCH 15/29] qla2xxx: Convert remaining printk's to ql_log format Chad Dupuis
2012-02-09 19:15 ` [PATCH 16/29] qla2xxx: Use ql_log* #define's in ql_log() and ql_log_pci() Chad Dupuis
2012-02-09 19:15 ` [PATCH 17/29] qla2xxx: Fix ql_dbg arguments Chad Dupuis
2012-02-09 19:15 ` [PATCH 18/29] qla2xxx: Add new message when a new loopid is assigned Chad Dupuis
2012-02-09 19:15 ` [PATCH 19/29] qla2xxx: Log messages to use correct vha Chad Dupuis
2012-02-09 19:15 ` [PATCH 20/29] qla2xxx: Change the log message when previous dump is available to retrieve for ISP82xx Chad Dupuis
2012-02-09 19:15 ` [PATCH 21/29] qla2xxx: Perform firmware dump procedure on mailbox command timeout Chad Dupuis
2012-02-09 19:15 ` [PATCH 22/29] qla2xxx: Update LICENSE.qla2xxx Chad Dupuis
2012-02-09 19:15 ` [PATCH 23/29] qla2xxx: Remove EDC sysfs interface Chad Dupuis
2012-02-09 19:15 ` [PATCH 24/29] qla2xxx: Cache swl during fabric discovery Chad Dupuis
2012-02-09 19:15 ` [PATCH 25/29] qla2xxx: Add ha->max_fibre_devices to keep track of the maximum number of targets Chad Dupuis
2012-02-19 14:33   ` James Bottomley
2012-02-09 19:15 ` [PATCH 26/29] qla2xxx: Handle device mapping changes due to device logout Chad Dupuis
2012-02-09 19:15 ` [PATCH 27/29] qla2xxx: Fix incorrect register access in qla2x00_start_iocbs() Chad Dupuis
2012-02-09 19:16 ` [PATCH 28/29] qla2xxx: Stop iteration after first failure in *_id functions Chad Dupuis
2012-02-09 19:16 ` [PATCH 29/29] qla2xxx: Avoid invalid request queue dereference for bad response packets Chad Dupuis

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).