public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: Andrew Vasquez <andrew.vasquez@qlogic.com>
To: Linux SCSI Mailing List <linux-scsi@vger.kernel.org>,
	James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Seokmann Ju <seokmann.ju@qlogic.com>,
	Andrew Vasquez <andrew.vasquez@qlogic.com>
Subject: [PATCH 0/21] qla2xxx: Driver update [8.02.01-k1].
Date: Thu, 3 Apr 2008 13:11:52 -0700	[thread overview]
Message-ID: <20080403201152.GB8033@plap4.local> (raw)

This patchset updates the qla2xxx driver to 8.02.01-k1

 drivers/scsi/qla2xxx/Kconfig        |    3 +-
 drivers/scsi/qla2xxx/qla_attr.c     |   36 +++-
 drivers/scsi/qla2xxx/qla_dbg.c      |  124 +----------
 drivers/scsi/qla2xxx/qla_dbg.h      |   23 +--
 drivers/scsi/qla2xxx/qla_def.h      |   78 ++++++-
 drivers/scsi/qla2xxx/qla_dfs.c      |    2 +-
 drivers/scsi/qla2xxx/qla_fw.h       |  173 ++++++++++++++-
 drivers/scsi/qla2xxx/qla_gbl.h      |   33 ++-
 drivers/scsi/qla2xxx/qla_gs.c       |   16 +-
 drivers/scsi/qla2xxx/qla_init.c     |  192 +++++++++++-----
 drivers/scsi/qla2xxx/qla_inline.h   |   87 +-------
 drivers/scsi/qla2xxx/qla_iocb.c     |    5 +-
 drivers/scsi/qla2xxx/qla_isr.c      |  223 ++++++++----------
 drivers/scsi/qla2xxx/qla_mbx.c      |  318 +++++++++++++++++++-------
 drivers/scsi/qla2xxx/qla_mid.c      |   30 +--
 drivers/scsi/qla2xxx/qla_os.c       |  443 +++++++++++++++++------------------
 drivers/scsi/qla2xxx/qla_settings.h |   16 +--
 drivers/scsi/qla2xxx/qla_sup.c      |  315 ++++++++++++++++++++-----
 drivers/scsi/qla2xxx/qla_version.h  |    6 +-
 19 files changed, 1266 insertions(+), 857 deletions(-)

here's the commits:

- Update firmware filenames for new ISP parts.
- Update copyright banner.
- Add support for host supported speeds FC transport attribute.
- Remove unused and obsolete #define's.
- Use an rport's scsi_target_id member consistently throughout driver.
- Simplify interrupt handler locking.
- Add FC-transport Asynchronous Event Notification support.
- Add hardware trace-logging support.
- Cruft cleanup of functions and structures.
- Use PCI-SIG nomenclature for PCIe bandwidth units.
- Add Flash Descriptor Table layout support.
- Check alternate 'reason' code during GPSC status handling.
- Add midlayer target/device reset support.
- Assign mailbox command timeout values in a consistent manner.
- Add ISP84XX support.
- Remove unused member (dma_handle) from srb_t structure.
- Consistently access the physical HA port.
- Check DFLG_NO_CABLE only on physical port.
- Use proper HA during asynchrounous event handling.
- Correct vport configuration-change handling.
- Update version number to 8.02.01-k1.

Regards,
Andrew Vasquez
QLogic Corporation

             reply	other threads:[~2008-04-03 20:11 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-03 20:11 Andrew Vasquez [this message]
2008-04-03 20:13 ` [PATCH 01/21] qla2xxx: Update firmware filenames for new ISP parts Andrew Vasquez
2008-04-03 20:13 ` [PATCH 02/21] qla2xxx: Update copyright banner Andrew Vasquez
2008-04-03 20:13 ` [PATCH 03/21] qla2xxx: Add support for host supported speeds FC transport attribute Andrew Vasquez
2008-04-03 20:13 ` [PATCH 04/21] qla2xxx: Remove unused and obsolete #define's Andrew Vasquez
2008-04-03 20:13 ` [PATCH 05/21] qla2xxx: Use an rport's scsi_target_id member consistently throughout driver Andrew Vasquez
2008-04-03 20:13 ` [PATCH 06/21] qla2xxx: Simplify interrupt handler locking Andrew Vasquez
2008-04-03 20:36   ` James Bottomley
2008-04-03 22:07     ` Andrew Vasquez
2008-04-03 22:39       ` James Bottomley
2008-04-03 20:13 ` [PATCH 07/21] qla2xxx: Add FC-transport Asynchronous Event Notification support Andrew Vasquez
2008-04-03 20:13 ` [PATCH 08/21] qla2xxx: Add hardware trace-logging support Andrew Vasquez
2008-04-03 20:13 ` [PATCH 09/21] qla2xxx: Cruft cleanup of functions and structures Andrew Vasquez
2008-04-03 20:13 ` [PATCH 10/21] qla2xxx: Use PCI-SIG nomenclature for PCIe bandwidth units Andrew Vasquez
2008-04-03 20:13 ` [PATCH 11/21] qla2xxx: Add Flash Descriptor Table layout support Andrew Vasquez
2008-04-03 20:13 ` [PATCH 12/21] qla2xxx: Check alternate 'reason' code during GPSC status handling Andrew Vasquez
2008-04-03 20:13 ` [PATCH 13/21] qla2xxx: Add midlayer target/device reset support Andrew Vasquez
2008-04-03 20:13 ` [PATCH 14/21] qla2xxx: Assign mailbox command timeout values in a consistent manner Andrew Vasquez
2008-04-03 20:13 ` [PATCH 15/21] qla2xxx: Add ISP84XX support Andrew Vasquez
2008-04-03 20:13 ` [PATCH 16/21] qla2xxx: Remove unused member (dma_handle) from srb_t structure Andrew Vasquez
2008-04-03 20:13 ` [PATCH 17/21] qla2xxx: Consistently access the physical HA port Andrew Vasquez
2008-04-03 20:13 ` [PATCH 18/21] qla2xxx: Check DFLG_NO_CABLE only on physical port Andrew Vasquez
2008-04-03 20:13 ` [PATCH 19/21] qla2xxx: Use proper HA during asynchrounous event handling Andrew Vasquez
2008-04-03 20:13 ` [PATCH 20/21] qla2xxx: Correct vport configuration-change handling Andrew Vasquez
2008-04-03 20:13 ` [PATCH 21/21] qla2xxx: Update version number to 8.02.01-k1 Andrew Vasquez

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=20080403201152.GB8033@plap4.local \
    --to=andrew.vasquez@qlogic.com \
    --cc=James.Bottomley@HansenPartnership.com \
    --cc=linux-scsi@vger.kernel.org \
    --cc=seokmann.ju@qlogic.com \
    /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