All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/23] qla2xxx: Patches for 3.15 scsi "misc" branch.
@ 2014-02-26  9:14 Saurav Kashyap
  2014-02-26  9:14 ` [PATCH RESUBMIT 01/23] qla2xxx: Add mutex around optrom calls to serialize accesses Saurav Kashyap
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Saurav Kashyap @ 2014-02-26  9:14 UTC (permalink / raw)
  To: jbottomley; +Cc: giridhar.malavali, saurav.kashyap, andrew.vasquez, linux-scsi

From: Chad Dupuis <chad.dupuis@qlogic.com>

Hi James,

Please apply the following patches to the scsi tree, misc branch  at your
earliest convenience. This patch set is a resubmission of a patch set we
had previously submitted plus three new patches and that this supersedes
what was posted in December.

Thanks,
~Saurav


Armen Baloyan (6):
  qla2xxx: Add handling for boot indication progress AENs for ISPFX00.
  qla2xxx: Replace constant value for IOCTL IOCB abort execution status
    with a macro for ISPFX00.
  qla2xxx: Remove Marker type IOCB logic for ISPFX00.
  qla2xxx: Add changes in the IOCB structures to adjust driver source
    codes to ISPFX00 firmware spec.
  qla2xxx: Fix Task Management command asynchronous handling
  qla2xxx: Add IOCB Abort command asynchronous handling.

Atul Deshmukh (2):
  qla2xxx: Use proper message for Non owner reset ACK Timeout.
  qla2xxx: Remove ISP_ABORT_NEEDED and ISP_ABORT_RETRY checks from
    watchdog function for ISP8044.

Chad Dupuis (6):
  qla2xxx: Add mutex around optrom calls to serialize accesses.
  qla2xxx: Set host can_queue value based on available resources.
  scsi_transport_fc: Add 32Gbps speed definition.
  qla2xxx: Add support for ISP2071.
  qla2xxx: Read capture firmware dump on mailbox timeout for ISP8044
    and ISP82XX.
  qla2xxx: Fix multiqueue MSI-X registration.

Joe Carnuccio (1):
  qla2xxx: Enable the Flash Access Control (FAC) mailbox command.

Saurav Kashyap (8):
  qla2xxx: Remove init control block related dead code for ISPFX00.
  qla2xxx: Select correct request queue for error type IOCB for
    ISPFX00.
  qla2xxx: Properly handle 32 bit mailbox register for ISPFX00.
  qla2xxx: Avoid poisoning in the response queue for ISPFX00.
  qla2xxx: Simplify the ISPFX00 interrupt handler code for ISPFX00.
  qla2xxx: Correctly set the read_optrom pointer for ISP8044.
  qla2xxx: Update the driver version to 8.07.00.02-k.
  qla2xxx: Correct the port no assignment for ISP82XX.

 drivers/scsi/qla2xxx/Makefile      |    2 +-
 drivers/scsi/qla2xxx/qla_attr.c    |  193 +++++++-
 drivers/scsi/qla2xxx/qla_bsg.c     |   12 +-
 drivers/scsi/qla2xxx/qla_dbg.c     |  134 +++++-
 drivers/scsi/qla2xxx/qla_dbg.h     |    7 +
 drivers/scsi/qla2xxx/qla_def.h     |   65 ++--
 drivers/scsi/qla2xxx/qla_dfs.c     |    3 +-
 drivers/scsi/qla2xxx/qla_fw.h      |    4 +
 drivers/scsi/qla2xxx/qla_gbl.h     |   12 +-
 drivers/scsi/qla2xxx/qla_gs.c      |   11 +
 drivers/scsi/qla2xxx/qla_init.c    |  426 +++++++++++++++---
 drivers/scsi/qla2xxx/qla_iocb.c    |   42 ++-
 drivers/scsi/qla2xxx/qla_isr.c     |  139 ++++--
 drivers/scsi/qla2xxx/qla_mbx.c     |   50 ++-
 drivers/scsi/qla2xxx/qla_mid.c     |    4 +-
 drivers/scsi/qla2xxx/qla_mr.c      |  252 ++---------
 drivers/scsi/qla2xxx/qla_mr.h      |   57 +--
 drivers/scsi/qla2xxx/qla_nx.c      |   21 +-
 drivers/scsi/qla2xxx/qla_nx2.c     |   22 +-
 drivers/scsi/qla2xxx/qla_os.c      |  155 +++++--
 drivers/scsi/qla2xxx/qla_sup.c     |   65 ++-
 drivers/scsi/qla2xxx/qla_tmpl.c    |  909 ++++++++++++++++++++++++++++++++++++
 drivers/scsi/qla2xxx/qla_tmpl.h    |  205 ++++++++
 drivers/scsi/qla2xxx/qla_version.h |    4 +-
 drivers/scsi/scsi_transport_fc.c   |    1 +
 include/scsi/scsi_transport_fc.h   |    1 +
 26 files changed, 2248 insertions(+), 548 deletions(-)
 create mode 100644 drivers/scsi/qla2xxx/qla_tmpl.c
 create mode 100644 drivers/scsi/qla2xxx/qla_tmpl.h

-- 
1.7.7


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

end of thread, other threads:[~2014-02-26  9:51 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-26  9:14 [PATCH 00/23] qla2xxx: Patches for 3.15 scsi "misc" branch Saurav Kashyap
2014-02-26  9:14 ` [PATCH RESUBMIT 01/23] qla2xxx: Add mutex around optrom calls to serialize accesses Saurav Kashyap
2014-02-26  9:14 ` [PATCH RESUBMIT 02/23] qla2xxx: Add handling for boot indication progress AENs for ISPFX00 Saurav Kashyap
2014-02-26  9:14 ` [PATCH RESUBMIT 03/23] qla2xxx: Replace constant value for IOCTL IOCB abort execution status with a macro " Saurav Kashyap
2014-02-26  9:14 ` [PATCH RESUBMIT 04/23] qla2xxx: Use proper message for Non owner reset ACK Timeout Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 05/23] qla2xxx: Remove init control block related dead code for ISPFX00 Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 06/23] qla2xxx: Select correct request queue for error type IOCB " Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 07/23] qla2xxx: Enable the Flash Access Control (FAC) mailbox command Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 08/23] qla2xxx: Properly handle 32 bit mailbox register for ISPFX00 Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 09/23] qla2xxx: Set host can_queue value based on available resources Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 10/23] scsi_transport_fc: Add 32Gbps speed definition Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 11/23] qla2xxx: Add support for ISP2071 Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 12/23] qla2xxx: Remove Marker type IOCB logic for ISPFX00 Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 13/23] qla2xxx: Remove ISP_ABORT_NEEDED and ISP_ABORT_RETRY checks from watchdog function for ISP8044 Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 14/23] qla2xxx: Add changes in the IOCB structures to adjust driver source codes to ISPFX00 firmware spec Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 15/23] qla2xxx: Avoid poisoning in the response queue for ISPFX00 Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 16/23] qla2xxx: Simplify the ISPFX00 interrupt handler code " Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 17/23] qla2xxx: Read capture firmware dump on mailbox timeout for ISP8044 and ISP82XX Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 18/23] qla2xxx: Correctly set the read_optrom pointer for ISP8044 Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 19/23] qla2xxx: Fix multiqueue MSI-X registration Saurav Kashyap
2014-02-26  9:15 ` [PATCH RESUBMIT 20/23] qla2xxx: Update the driver version to 8.07.00.02-k Saurav Kashyap
2014-02-26  9:15 ` [PATCH 21/23] qla2xxx: Correct the port no assignment for ISP82XX Saurav Kashyap
2014-02-26  9:15 ` [PATCH 22/23] qla2xxx: Fix Task Management command asynchronous handling Saurav Kashyap
2014-02-26  9:15 ` [PATCH 23/23] qla2xxx: Add IOCB Abort " Saurav Kashyap

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.