linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/42] qla2xxx: Patches for scsi "misc" branch.
@ 2012-08-22 18:20 Chad Dupuis
  2012-08-22 18:20 ` [PATCH 01/42] qla2xxx: Bind to ISP8031 devices Chad Dupuis
                   ` (41 more replies)
  0 siblings, 42 replies; 47+ messages in thread
From: Chad Dupuis @ 2012-08-22 18:20 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.

Thanks,
Chad

Andrew Vasquez (2):
  qla2xxx: Ensure PLOGI is sent to Fabric Management-Server upon
    request.
  qla2xxx: Fail initialization if unable to load RISC code.

Arun Easi (5):
  qla2xxx: Fix for continuous rescan attempts in arbitrated loop
    topology.
  qla2xxx: Use #defines instead of hardcoded values for intr status.
  qla2xxx: T10 DIF - ISP83xx changes.
  qla2xxx: Fix incorrect status reporting on DIF errors.
  qla2xxx: Use the right field for container_of.

Atul Deshmukh (1):
  qla2xxx: Wrong PCIe(2.5Gb/s x8) speed in the kerenel message for
    ISP82xx.

Chad Dupuis (12):
  qla2xxx: Bind to ISP8031 devices.
  qla2xxx: Add check in qla82xx_watchdog for failed hardware state.
  qla2xxx: Use bitmap to store loop_id's for fcports.
  qla2xxx: Changes for ISP83xx loopback support.
  qla2xxx: Update the driver license.
  qla2xxx: Only enable link up on the correct interrupt event.
  qla2xxx: Implement beacon support for ISP83xx.
  qla2xxx: Remove setting Scsi_host->this_id during adapter probe.
  qla2xxx: Fix description of qla2xmaxqdepth parameter.
  qla2xxx: Fix for handling some error conditions in loopback.
  qla2xxx: Set Maximum Read Request Size to 4K.
  qla2xxx: Update version number to 8.04.00.07-k.

Giridhar Malavali (4):
  qla2xxx: Don't register to legacy interrupt for ISP82xx.
  qla2xxx: Fix for legacy interrupts for ISP83xx.
  qla2xxx: Don't toggle RISC interrupt bits after IRQ lines are
    attached.
  qla2xxx: Allow MSI interrupt registration for ISP82xx.

Harish Zunjarrao (1):
  qla2xxx: Add FW DUMP SIZE sysfs attribute.

Joe Carnuccio (3):
  qla2xxx: Add I2C BSG interface.
  qla2xxx: Add bit to identify adapters for thermal temp.
  qla2xxx: Do PCI fundamental reset for ISP83xx

Masanari Iida (1):
  qla2xxx: Fix typo in qla2xxx files

Santosh Vernekar (2):
  qla2xxx: IDC implementation for ISP83xx.
  qla2xxx: Perform ROM mbx cmd access only after ISP soft-reset during
    f/w recovery.

Saurav Kashyap (11):
  qla2xxx: Display mailbox failure by default.
  qla2xxx: Implementation of bidirectional.
  qla2xxx: Implemetation of mctp.
  qla2xxx: Fix rval may be used uninitialized in this function warning.
  qla2xxx: Dont call nic restart firmware if it is already active and
    running.
  qla2xxx: Do not restrict the number of NPIV ports for ISP83xx.
  qla2xxx: set idc version if function is first one to come.
  qla2xxx: Enclose adapter related calls in adapter check in failed
    state handler.
  qla2xxx: Get fcal position map should not be called for p2p topology.
  qla2xxx: Enable fw attributes for ISP24xx and above.
  qla2xxx: Restrict nic core reset to one function for mctp.

 Documentation/scsi/LICENSE.qla2xxx  |    2 +-
 drivers/scsi/qla2xxx/qla_attr.c     |  145 ++++++-
 drivers/scsi/qla2xxx/qla_bsg.c      |  376 +++++++++++++++--
 drivers/scsi/qla2xxx/qla_bsg.h      |   30 ++-
 drivers/scsi/qla2xxx/qla_dbg.c      |   29 +-
 drivers/scsi/qla2xxx/qla_dbg.h      |    2 +-
 drivers/scsi/qla2xxx/qla_def.h      |  166 +++++++-
 drivers/scsi/qla2xxx/qla_dfs.c      |    2 +-
 drivers/scsi/qla2xxx/qla_fw.h       |   49 ++-
 drivers/scsi/qla2xxx/qla_gbl.h      |   39 ++-
 drivers/scsi/qla2xxx/qla_gs.c       |    4 +-
 drivers/scsi/qla2xxx/qla_init.c     |  562 ++++++++++++++++++++++----
 drivers/scsi/qla2xxx/qla_inline.h   |   28 ++-
 drivers/scsi/qla2xxx/qla_iocb.c     |  261 ++++++++++--
 drivers/scsi/qla2xxx/qla_isr.c      |  437 ++++++++++++++++++---
 drivers/scsi/qla2xxx/qla_mbx.c      |  224 +++++++++-
 drivers/scsi/qla2xxx/qla_mid.c      |    5 +-
 drivers/scsi/qla2xxx/qla_nx.c       |  153 ++++----
 drivers/scsi/qla2xxx/qla_nx.h       |   17 +-
 drivers/scsi/qla2xxx/qla_os.c       |  767 +++++++++++++++++++++++++++++++++--
 drivers/scsi/qla2xxx/qla_settings.h |    2 +-
 drivers/scsi/qla2xxx/qla_sup.c      |   67 +++-
 drivers/scsi/qla2xxx/qla_version.h  |    6 +-
 23 files changed, 2957 insertions(+), 416 deletions(-)

-- 
1.7.7


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

end of thread, other threads:[~2012-09-14 17:27 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-22 18:20 [PATCH 00/42] qla2xxx: Patches for scsi "misc" branch Chad Dupuis
2012-08-22 18:20 ` [PATCH 01/42] qla2xxx: Bind to ISP8031 devices Chad Dupuis
2012-08-22 18:20 ` [PATCH 02/42] qla2xxx: Add I2C BSG interface Chad Dupuis
2012-08-22 18:20 ` [PATCH 03/42] qla2xxx: Add check in qla82xx_watchdog for failed hardware state Chad Dupuis
2012-08-22 18:20 ` [PATCH 04/42] qla2xxx: Fix typo in qla2xxx files Chad Dupuis
2012-08-22 18:20 ` [PATCH 05/42] qla2xxx: Display mailbox failure by default Chad Dupuis
2012-08-22 18:21 ` [PATCH 06/42] qla2xxx: Use bitmap to store loop_id's for fcports Chad Dupuis
2012-08-22 18:21 ` [PATCH 07/42] qla2xxx: Implementation of bidirectional Chad Dupuis
2012-08-22 18:21 ` [PATCH 08/42] qla2xxx: Add FW DUMP SIZE sysfs attribute Chad Dupuis
2012-08-22 18:21 ` [PATCH 09/42] qla2xxx: IDC implementation for ISP83xx Chad Dupuis
2012-08-22 18:21 ` [PATCH 10/42] qla2xxx: Implemetation of mctp Chad Dupuis
2012-09-14 16:28   ` James Bottomley
2012-08-22 18:21 ` [PATCH 11/42] qla2xxx: Add bit to identify adapters for thermal temp Chad Dupuis
2012-08-22 18:21 ` [PATCH 12/42] qla2xxx: Changes for ISP83xx loopback support Chad Dupuis
2012-08-22 18:21 ` [PATCH 13/42] qla2xxx: Don't register to legacy interrupt for ISP82xx Chad Dupuis
2012-08-22 18:21 ` [PATCH 14/42] qla2xxx: Update the driver license Chad Dupuis
2012-09-14 16:36   ` James Bottomley
2012-08-22 18:21 ` [PATCH 15/42] qla2xxx: Only enable link up on the correct interrupt event Chad Dupuis
2012-08-22 18:21 ` [PATCH 16/42] qla2xxx: Fix for continuous rescan attempts in arbitrated loop topology Chad Dupuis
2012-08-22 18:21 ` [PATCH 17/42] qla2xxx: Implement beacon support for ISP83xx Chad Dupuis
2012-08-22 18:21 ` [PATCH 18/42] qla2xxx: Fix rval may be used uninitialized in this function warning Chad Dupuis
2012-08-22 18:21 ` [PATCH 19/42] qla2xxx: Perform ROM mbx cmd access only after ISP soft-reset during f/w recovery Chad Dupuis
2012-08-22 18:21 ` [PATCH 20/42] qla2xxx: Wrong PCIe(2.5Gb/s x8) speed in the kerenel message for ISP82xx Chad Dupuis
2012-08-22 18:21 ` [PATCH 21/42] qla2xxx: Dont call nic restart firmware if it is already active and running Chad Dupuis
2012-08-22 18:21 ` [PATCH 22/42] qla2xxx: Use #defines instead of hardcoded values for intr status Chad Dupuis
2012-08-22 18:21 ` [PATCH 23/42] qla2xxx: Remove setting Scsi_host->this_id during adapter probe Chad Dupuis
2012-08-22 18:21 ` [PATCH 24/42] qla2xxx: Ensure PLOGI is sent to Fabric Management-Server upon request Chad Dupuis
2012-08-22 18:21 ` [PATCH 25/42] qla2xxx: Fail initialization if unable to load RISC code Chad Dupuis
2012-08-22 18:21 ` [PATCH 26/42] qla2xxx: Do PCI fundamental reset for ISP83xx Chad Dupuis
2012-08-22 18:21 ` [PATCH 27/42] qla2xxx: Do not restrict the number of NPIV ports " Chad Dupuis
2012-08-22 18:21 ` [PATCH 28/42] qla2xxx: set idc version if function is first one to come Chad Dupuis
2012-08-22 18:21 ` [PATCH 29/42] qla2xxx: Fix description of qla2xmaxqdepth parameter Chad Dupuis
2012-08-22 18:21 ` [PATCH 30/42] qla2xxx: Fix for handling some error conditions in loopback Chad Dupuis
2012-08-22 18:21 ` [PATCH 31/42] qla2xxx: Enclose adapter related calls in adapter check in failed state handler Chad Dupuis
2012-08-22 18:21 ` [PATCH 32/42] qla2xxx: Set Maximum Read Request Size to 4K Chad Dupuis
2012-08-22 18:21 ` [PATCH 33/42] qla2xxx: Get fcal position map should not be called for p2p topology Chad Dupuis
2012-08-22 18:21 ` [PATCH 34/42] qla2xxx: Enable fw attributes for ISP24xx and above Chad Dupuis
2012-08-22 18:21 ` [PATCH 35/42] qla2xxx: Restrict nic core reset to one function for mctp Chad Dupuis
2012-08-22 18:21 ` [PATCH 36/42] qla2xxx: Fix for legacy interrupts for ISP83xx Chad Dupuis
2012-08-22 18:21 ` [PATCH 37/42] qla2xxx: T10 DIF - ISP83xx changes Chad Dupuis
2012-08-22 18:21 ` [PATCH 38/42] qla2xxx: Fix incorrect status reporting on DIF errors Chad Dupuis
2012-08-22 18:21 ` [PATCH 39/42] qla2xxx: Don't toggle RISC interrupt bits after IRQ lines are attached Chad Dupuis
2012-08-22 18:21 ` [PATCH 40/42] qla2xxx: Allow MSI interrupt registration for ISP82xx Chad Dupuis
2012-08-22 18:21 ` [PATCH 41/42] qla2xxx: Use the right field for container_of Chad Dupuis
2012-08-22 18:21 ` [PATCH 42/42] qla2xxx: Update version number to 8.04.00.07-k Chad Dupuis
2012-09-14 17:20   ` James Bottomley
2012-09-14 17:27     ` 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).