linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Saurav Kashyap <saurav.kashyap@qlogic.com>
To: jbottomley@parallels.com
Cc: giridhar.malavali@qlogic.com, saurav.kashyap@qlogic.com,
	andrew.vasquez@qlogic.com, linux-scsi@vger.kernel.org
Subject: [PATCH 00/20] qla2xxx: Patches for scsi "misc" branch.
Date: Fri, 13 Dec 2013 15:03:40 -0500	[thread overview]
Message-ID: <1386965040-20611-1-git-send-email-saurav.kashyap@qlogic.com> (raw)

Hi James,

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

Note: This patch set contains a change to the FC transport (10/20)
as one of the patches in this patch set is dependent on that change.

Thanks,
~Saurav 

Armen Baloyan (4):
  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.

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 ISP2701.
  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 (7):
  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 poisoining in the response queue for ISPFX00.
  qla2xxx: Simplyfy 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.

 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     |  133 +++++-
 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     |   10 +
 drivers/scsi/qla2xxx/qla_gs.c      |   11 +
 drivers/scsi/qla2xxx/qla_init.c    |  261 ++++++++++-
 drivers/scsi/qla2xxx/qla_iocb.c    |   15 +-
 drivers/scsi/qla2xxx/qla_isr.c     |   72 ++--
 drivers/scsi/qla2xxx/qla_mbx.c     |   47 ++-
 drivers/scsi/qla2xxx/qla_mid.c     |    4 +-
 drivers/scsi/qla2xxx/qla_mr.c      |   98 ++---
 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      |  152 +++++--
 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, 2040 insertions(+), 334 deletions(-)
 create mode 100644 drivers/scsi/qla2xxx/qla_tmpl.c
 create mode 100644 drivers/scsi/qla2xxx/qla_tmpl.h

-- 
1.7.7


             reply	other threads:[~2013-12-13 20:37 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-13 20:03 Saurav Kashyap [this message]
2013-12-13 20:03 ` [PATCH 01/20] qla2xxx: Add mutex around optrom calls to serialize accesses Saurav Kashyap
2013-12-13 20:03 ` [PATCH 02/20] qla2xxx: Add handling for boot indication progress AENs for ISPFX00 Saurav Kashyap
2013-12-13 20:03 ` [PATCH 03/20] qla2xxx: Replace constant value for IOCTL IOCB abort execution status with a macro " Saurav Kashyap
2013-12-13 20:03 ` [PATCH 04/20] qla2xxx: Use proper message for Non owner reset ACK Timeout Saurav Kashyap
2013-12-13 20:03 ` [PATCH 05/20] qla2xxx: Remove init control block related dead code for ISPFX00 Saurav Kashyap
2013-12-13 20:03 ` [PATCH 06/20] qla2xxx: Select correct request queue for error type IOCB " Saurav Kashyap
2013-12-13 20:03 ` [PATCH 07/20] qla2xxx: Enable the Flash Access Control (FAC) mailbox command Saurav Kashyap
2013-12-13 20:03 ` [PATCH 08/20] qla2xxx: Properly handle 32 bit mailbox register for ISPFX00 Saurav Kashyap
2013-12-13 20:03 ` [PATCH 09/20] qla2xxx: Set host can_queue value based on available resources Saurav Kashyap
2013-12-13 20:03 ` [PATCH 10/20] scsi_transport_fc: Add 32Gbps speed definition Saurav Kashyap
2013-12-13 20:03 ` [PATCH 11/20] qla2xxx: Add support for ISP2701 Saurav Kashyap
2013-12-16  6:56   ` Bart Van Assche
2013-12-13 20:03 ` [PATCH 12/20] qla2xxx: Remove Marker type IOCB logic for ISPFX00 Saurav Kashyap
2013-12-13 20:03 ` [PATCH 13/20] qla2xxx: Remove ISP_ABORT_NEEDED and ISP_ABORT_RETRY checks from watchdog function for ISP8044 Saurav Kashyap
2013-12-13 20:03 ` [PATCH 14/20] qla2xxx: Add changes in the IOCB structures to adjust driver source codes to ISPFX00 firmware spec Saurav Kashyap
2013-12-13 20:03 ` [PATCH 15/20] qla2xxx: Avoid poisoining in the response queue for ISPFX00 Saurav Kashyap
2013-12-16  6:56   ` Bart Van Assche
2013-12-13 20:03 ` [PATCH 16/20] qla2xxx: Simplyfy the ISPFX00 interrupt handler code " Saurav Kashyap
2013-12-16  6:56   ` Bart Van Assche
2013-12-17  4:01     ` Saurav Kashyap
2013-12-13 20:03 ` [PATCH 17/20] qla2xxx: Read capture firmware dump on mailbox timeout for ISP8044 and ISP82XX Saurav Kashyap
2013-12-13 20:03 ` [PATCH 18/20] qla2xxx: Correctly set the read_optrom pointer for ISP8044 Saurav Kashyap
2013-12-13 20:03 ` [PATCH 19/20] qla2xxx: Fix multiqueue MSI-X registration Saurav Kashyap
2013-12-16  6:47   ` Bart Van Assche
2013-12-13 20:04 ` [PATCH 20/20] qla2xxx: Update the driver version to 8.07.00.02-k Saurav Kashyap

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1386965040-20611-1-git-send-email-saurav.kashyap@qlogic.com \
    --to=saurav.kashyap@qlogic.com \
    --cc=andrew.vasquez@qlogic.com \
    --cc=giridhar.malavali@qlogic.com \
    --cc=jbottomley@parallels.com \
    --cc=linux-scsi@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).