All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/22] qla2xxx: Updates for scsi "misc" branch.
@ 2012-05-15 18:34 Chad Dupuis
  2012-05-15 18:34 ` [PATCH 01/22] qla2xxx: Fix typo in qla_init.c Chad Dupuis
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Chad Dupuis @ 2012-05-15 18:34 UTC (permalink / raw)
  To: jbottomley; +Cc: giridhar.malavali, chad.dupuis, andrew.vasquez, linux-scsi

Hi James,

Please apply the following patches to the scsi tree at your earliest
convenience for inclusion in the 3.5 mainline merge window.  One
important thing to point out is that we've included the hooks for the
new target infrastructure into the qla2xx driver with this patch set.
We've been testing extensively the initiator mode functionalities and
target mode components with the consolidated tree for last several
months and we believe that it is ready for merging.

Thanks,
Chad

Andrew Vasquez (1):
  qla2xxx: Fix typo in bus-reset handler.

Chad Dupuis (5):
  qla2xxx: Remove unneeded DPC wakeups from qla82xx_watchdog.
  qla2xxx: Change "Done" to "Entering" in the debug print statement in
    qla2x00_port_logout.
  qla2xxx: Handle interrupt registration failures more gracefully.
  qla2xxx: Log link up and link down messages to track link flops.
  Revert "qla2xxx: During loopdown perform Diagnostic loopback."

Chetan Loke (1):
  qla2xxx: Micro optimization in queuecommand handler

Giridhar Malavali (4):
  qla2xxx: Detect PEG errors.
  qla2xxx: Display proper supported speeds for 16G FC adapters.
  qla2xxx: Don't capture minidump for ISP82xx on flash update from
    application.
  qla2xxx: Display proper firmware version when new minidump template
    is gathered for ISP82xx.

Joe Carnuccio (3):
  qla2xxx: Remove mirrored field vp_idx from struct fc_port.
  qla2xxx: Optimize existing port name server query matching.
  qla2xxx: Avoid losing any fc ports when loop id's are exhausted.

Masanari Iida (1):
  qla2xxx: Fix typo in qla_mbx.c

Nicholas Bellinger (2):
  qla2xxx: Add LLD target-mode infrastructure for >= 24xx series
  tcm_qla2xxx: Add >= 24xx series fabric module for target-core

Nigel Kirkland (1):
  qla2xxx: Fixups for ISP83xx.

Raul Porcel (1):
  qla2xxx: Fix typo in qla_init.c

Saurav Kashyap (3):
  qla2xxx: Add ql_dbg_verbose logging level.
  qla2xxx: Stats should be different from physical and virtual ports
  qla2xxx: Corrections to log messages.

 drivers/scsi/qla2xxx/Kconfig       |    9 +
 drivers/scsi/qla2xxx/Makefile      |    3 +-
 drivers/scsi/qla2xxx/qla_attr.c    |   22 +-
 drivers/scsi/qla2xxx/qla_bsg.c     |   12 +-
 drivers/scsi/qla2xxx/qla_dbg.c     |   81 +-
 drivers/scsi/qla2xxx/qla_dbg.h     |    9 +
 drivers/scsi/qla2xxx/qla_def.h     |   78 +-
 drivers/scsi/qla2xxx/qla_gbl.h     |    9 +
 drivers/scsi/qla2xxx/qla_gs.c      |    4 +-
 drivers/scsi/qla2xxx/qla_init.c    |  197 +-
 drivers/scsi/qla2xxx/qla_iocb.c    |   88 +-
 drivers/scsi/qla2xxx/qla_isr.c     |   94 +-
 drivers/scsi/qla2xxx/qla_mbx.c     |  615 ++++--
 drivers/scsi/qla2xxx/qla_mid.c     |   18 +-
 drivers/scsi/qla2xxx/qla_nx.c      |   66 +-
 drivers/scsi/qla2xxx/qla_nx.h      |   14 +-
 drivers/scsi/qla2xxx/qla_os.c      |  173 +-
 drivers/scsi/qla2xxx/qla_target.c  | 4973 ++++++++++++++++++++++++++++++++++++
 drivers/scsi/qla2xxx/qla_target.h  | 1005 ++++++++
 drivers/scsi/qla2xxx/tcm_qla2xxx.c | 1955 ++++++++++++++
 drivers/scsi/qla2xxx/tcm_qla2xxx.h |   82 +
 21 files changed, 9085 insertions(+), 422 deletions(-)
 create mode 100644 drivers/scsi/qla2xxx/qla_target.c
 create mode 100644 drivers/scsi/qla2xxx/qla_target.h
 create mode 100644 drivers/scsi/qla2xxx/tcm_qla2xxx.c
 create mode 100644 drivers/scsi/qla2xxx/tcm_qla2xxx.h

-- 
1.7.7


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

end of thread, other threads:[~2012-05-18 23:47 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-15 18:34 [PATCH 00/22] qla2xxx: Updates for scsi "misc" branch Chad Dupuis
2012-05-15 18:34 ` [PATCH 01/22] qla2xxx: Fix typo in qla_init.c Chad Dupuis
2012-05-15 18:34 ` [PATCH 02/22] qla2xxx: Micro optimization in queuecommand handler Chad Dupuis
2012-05-15 18:34 ` [PATCH 03/22] qla2xxx: Fix typo in qla_mbx.c Chad Dupuis
2012-05-15 18:34 ` [PATCH 04/22] qla2xxx: Remove unneeded DPC wakeups from qla82xx_watchdog Chad Dupuis
2012-05-15 18:34 ` [PATCH 05/22] qla2xxx: Detect PEG errors Chad Dupuis
2012-05-15 18:34 ` [PATCH 06/22] qla2xxx: Change "Done" to "Entering" in the debug print statement in qla2x00_port_logout Chad Dupuis
2012-05-15 18:34 ` [PATCH 07/22] qla2xxx: Handle interrupt registration failures more gracefully Chad Dupuis
2012-05-15 18:34 ` [PATCH 08/22] qla2xxx: Add ql_dbg_verbose logging level Chad Dupuis
2012-05-15 18:34 ` [PATCH 09/22] qla2xxx: Stats should be different from physical and virtual ports Chad Dupuis
2012-05-15 18:34 ` [PATCH 10/22] qla2xxx: Fix typo in bus-reset handler Chad Dupuis
2012-05-15 18:34 ` [PATCH 11/22] qla2xxx: Display proper supported speeds for 16G FC adapters Chad Dupuis
2012-05-15 18:34 ` [PATCH 12/22] qla2xxx: Fixups for ISP83xx Chad Dupuis
2012-05-15 18:34 ` [PATCH 13/22] qla2xxx: Remove mirrored field vp_idx from struct fc_port Chad Dupuis
2012-05-15 18:34 ` [PATCH 14/22] qla2xxx: Optimize existing port name server query matching Chad Dupuis
2012-05-15 18:34 ` [PATCH 15/22] qla2xxx: Corrections to log messages Chad Dupuis
2012-05-15 18:34 ` [PATCH 16/22] qla2xxx: Log link up and link down messages to track link flops Chad Dupuis
2012-05-15 18:34 ` [PATCH 17/22] qla2xxx: Avoid losing any fc ports when loop id's are exhausted Chad Dupuis
2012-05-15 18:34 ` [PATCH 18/22] qla2xxx: Don't capture minidump for ISP82xx on flash update from application Chad Dupuis
2012-05-15 18:34 ` [PATCH 19/22] qla2xxx: Display proper firmware version when new minidump template is gathered for ISP82xx Chad Dupuis
2012-05-15 18:34 ` [PATCH 20/22] Revert "qla2xxx: During loopdown perform Diagnostic loopback." Chad Dupuis
2012-05-15 18:34 ` [PATCH 21/22] qla2xxx: Add LLD target-mode infrastructure for >= 24xx series Chad Dupuis
2012-05-15 18:34 ` [PATCH 22/22] tcm_qla2xxx: Add >= 24xx series fabric module for target-core Chad Dupuis
2012-05-18 23:47 ` [PATCH 00/22] qla2xxx: Updates for scsi "misc" branch 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.