linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/22] qla2xxx: Patches for 3.13 scsi "misc" branch.
@ 2013-10-30  7:38 Saurav Kashyap
  2013-10-30  7:38 ` [PATCH 01/22] qla2xxx: Print proper QLAFX00 product name at probe Saurav Kashyap
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Saurav Kashyap @ 2013-10-30  7:38 UTC (permalink / raw)
  To: jbottomley; +Cc: giridhar.malavali, saurav.kashyap, andrew.vasquez, linux-scsi

Hi James,

Please apply the following patches to the scsi tree, misc branch  at your
earliest convenience.

Thanks,
~Saurav

Armen Baloyan (5):
  qla2xxx: Print proper QLAFX00 product name at probe.
  qla2xxx: Fix issue with not displaying node name after system reboot.
  qla2xxx: Add logic to abort BSG commands for ISPFX00.
  qla2xxx: Add changes to obtain ISPFX00 adapters product information
    in accordance with firmware update.
  qla2xxx: Replace a constant with a macro definition for
    host->canqueue assigmnment.

Atul Deshmukh (1):
  qla2xxx: Clear RISC INT reg only for an event and not always while
    polling.

Chad Dupuis (7):
  qla2xxx: Honor execute firmware failures.
  qla2xxx: Add BPM support for ISP25xx.
  Revert "qla2xxx: Ramp down queue depth for attached SCSI devices when
    driver resources are low."
  qla2xxx: Refactor shutdown code so some functionality can be reused.
  qla2xxx: Disable adapter when we encounter a PCI disconnect.
  qla2xxx: Use the correct mailbox registers when acknowledging an IDC
    request on ISP8044.
  qla2xxx: Only complete dcbx_comp and lb_portup_comp for virtual port
    index 0.

Joe Carnuccio (3):
  qla2xxx: Correctly set mailboxes for extended init control block.
  qla2xxx: Add BSG interface for read/write serdes register.
  qla2xxx: Fix undefined behavior in call to snprintf().

Saurav Kashyap (3):
  qla2xxx: Don't consider the drivers knocked out of IDC participation
    for future reset recovery process.
  qla2xxx: Adding MAINTAINERS for qla2xxx FC-SCSI driver
  qla2xxx: Update the driver version to 8.06.00.12-k.

Sawan Chandak (3):
  qla2xxx: Disable INTx interrupt for ISP82XX
  qla2xxx: Use scnprintf() instead of snprintf() in the sysfs handlers.
  qla2xxx: Reset nic_core_reset_owner on moving from COLD to READY for
    ISP8044

 MAINTAINERS                        |    3 +-
 drivers/scsi/qla2xxx/qla_attr.c    |  116 ++++++------
 drivers/scsi/qla2xxx/qla_bsg.c     |   44 +++++
 drivers/scsi/qla2xxx/qla_bsg.h     |   13 ++
 drivers/scsi/qla2xxx/qla_dbg.c     |    7 +-
 drivers/scsi/qla2xxx/qla_def.h     |   22 +--
 drivers/scsi/qla2xxx/qla_gbl.h     |   13 +-
 drivers/scsi/qla2xxx/qla_init.c    |    2 +
 drivers/scsi/qla2xxx/qla_inline.h  |   19 --
 drivers/scsi/qla2xxx/qla_isr.c     |   82 +++++++--
 drivers/scsi/qla2xxx/qla_mbx.c     |   73 +++++++-
 drivers/scsi/qla2xxx/qla_mr.c      |   39 +++-
 drivers/scsi/qla2xxx/qla_mr.h      |   12 +-
 drivers/scsi/qla2xxx/qla_nx.c      |   20 ++-
 drivers/scsi/qla2xxx/qla_nx2.c     |   25 ++--
 drivers/scsi/qla2xxx/qla_os.c      |  366 ++++++++++++++++++------------------
 drivers/scsi/qla2xxx/qla_version.h |    2 +-
 17 files changed, 534 insertions(+), 324 deletions(-)

-- 
1.7.7


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

end of thread, other threads:[~2013-10-30  8:12 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-30  7:38 [PATCH 00/22] qla2xxx: Patches for 3.13 scsi "misc" branch Saurav Kashyap
2013-10-30  7:38 ` [PATCH 01/22] qla2xxx: Print proper QLAFX00 product name at probe Saurav Kashyap
2013-10-30  7:38 ` [PATCH 02/22] qla2xxx: Honor execute firmware failures Saurav Kashyap
2013-10-30  7:38 ` [PATCH 03/22] qla2xxx: Disable INTx interrupt for ISP82XX Saurav Kashyap
2013-10-30  7:38 ` [PATCH 04/22] qla2xxx: Correctly set mailboxes for extended init control block Saurav Kashyap
2013-10-30  7:38 ` [PATCH 05/22] qla2xxx: Add BPM support for ISP25xx Saurav Kashyap
2013-10-30  7:38 ` [PATCH 06/22] qla2xxx: Don't consider the drivers knocked out of IDC participation for future reset recovery process Saurav Kashyap
2013-10-30  7:38 ` [PATCH 07/22] Revert "qla2xxx: Ramp down queue depth for attached SCSI devices when driver resources are low." Saurav Kashyap
2013-10-30  7:38 ` [PATCH 08/22] qla2xxx: Refactor shutdown code so some functionality can be reused Saurav Kashyap
2013-10-30  7:38 ` [PATCH 09/22] qla2xxx: Disable adapter when we encounter a PCI disconnect Saurav Kashyap
2013-10-30  7:38 ` [PATCH 10/22] qla2xxx: Fix issue with not displaying node name after system reboot Saurav Kashyap
2013-10-30  7:38 ` [PATCH 11/22] qla2xxx: Add BSG interface for read/write serdes register Saurav Kashyap
2013-10-30  7:38 ` [PATCH 12/22] qla2xxx: Fix undefined behavior in call to snprintf() Saurav Kashyap
2013-10-30  7:38 ` [PATCH 13/22] qla2xxx: Clear RISC INT reg only for an event and not always while polling Saurav Kashyap
2013-10-30  7:38 ` [PATCH 14/22] qla2xxx: Add logic to abort BSG commands for ISPFX00 Saurav Kashyap
2013-10-30  7:38 ` [PATCH 15/22] qla2xxx: Add changes to obtain ISPFX00 adapters product information in accordance with firmware update Saurav Kashyap
2013-10-30  7:38 ` [PATCH 16/22] qla2xxx: Use the correct mailbox registers when acknowledging an IDC request on ISP8044 Saurav Kashyap
2013-10-30  7:38 ` [PATCH 17/22] qla2xxx: Use scnprintf() instead of snprintf() in the sysfs handlers Saurav Kashyap
2013-10-30  7:38 ` [PATCH 18/22] qla2xxx: Only complete dcbx_comp and lb_portup_comp for virtual port index 0 Saurav Kashyap
2013-10-30  7:38 ` [PATCH 19/22] qla2xxx: Reset nic_core_reset_owner on moving from COLD to READY for ISP8044 Saurav Kashyap
2013-10-30  7:38 ` [PATCH 20/22] qla2xxx: Replace a constant with a macro definition for host->canqueue assigmnment Saurav Kashyap
2013-10-30  7:38 ` [PATCH 21/22] qla2xxx: Adding MAINTAINERS for qla2xxx FC-SCSI driver Saurav Kashyap
2013-10-30  7:38 ` [PATCH 22/22] qla2xxx: Update the driver version to 8.06.00.12-k Saurav Kashyap

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).