All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/25] qla2xxx: Updates for the driver
@ 2020-02-12 21:44 Himanshu Madhani
  2020-02-12 21:44 ` [PATCH 01/25] qla2xxx: Add beacon LED config sysfs interface Himanshu Madhani
                   ` (25 more replies)
  0 siblings, 26 replies; 29+ messages in thread
From: Himanshu Madhani @ 2020-02-12 21:44 UTC (permalink / raw)
  To: James.Bottomley, martin.petersen; +Cc: hmadhani, linux-scsi

Hi Martin, 

This series addes enhancements to the driver in the area of FDMI
commands and adding support for RDP command. This series also
adds support for Beacon LED/D-Port SysFS nodes. 

There are few other patches which are cleanup to improve readability
as well as consolidates code.  

Please apply this series to 5.7.0/scsi-misc at your earliest convenience.

Thanks,
Himanshu

Anil Gurumurthy (1):
  qla2xxx: Remove all DIX-0 references

Himanshu Madhani (8):
  qla2xxx: Display message for FCE enabled
  qla2xxx: Show correct port speed capabilities for RDP command
  qla2xxx: Fix RDP response size
  qla2xxx: Save rscn_gen for new fcport
  qla2xxx: Fix control flags for login/logout IOCB
  qla2xxx: Add fixes for mailbox command
  qla2xxx: Use QLA_FW_STOPPED macro to propagate flag
  qla2xxx: Update driver version to 10.01.00.24-k

Joe Carnuccio (15):
  qla2xxx: Add beacon LED config sysfs interface
  qla2xxx: Move free of fcport out of interrupt context
  qla2xxx: Add sysfs node for D-Port Diagnostics AEN data
  qla2xxx: Add endianizer macro calls to fc host stats
  qla2xxx: Add changes in preparation for vendor extended FDMI/RDP
  qla2xxx: Add vendor extended RDP additions and amendments
  qla2xxx: Add ql2xrdpenable module parameter for RDP
  qla2xxx: Add vendor extended FDMI commands
  qla2xxx: Cleanup ELS/PUREX iocb fields
  qla2xxx: Add deferred queue for processing ABTS and RDP
  qla2xxx: Handle cases for limiting RDP response payload length
  qla2xxx: Use endian macros to assign static fields in fwdump header
  qla2xxx: Correction to selection of loopback/echo test
  qla2xxx: Fix qla2x00_echo_test() based on ISP type
  qla2xxx: Print portname for logging in qla24xx_logio_entry()

Quinn Tran (1):
  qla2xxx: Use correct ISP28xx active FW region

 drivers/scsi/qla2xxx/qla_attr.c    |  136 ++-
 drivers/scsi/qla2xxx/qla_bsg.c     |   27 +-
 drivers/scsi/qla2xxx/qla_def.h     |  357 +++++---
 drivers/scsi/qla2xxx/qla_fw.h      |  170 +++-
 drivers/scsi/qla2xxx/qla_gbl.h     |   19 +-
 drivers/scsi/qla2xxx/qla_gs.c      | 1703 ++++++++++++++++--------------------
 drivers/scsi/qla2xxx/qla_init.c    |   51 +-
 drivers/scsi/qla2xxx/qla_iocb.c    |   20 +-
 drivers/scsi/qla2xxx/qla_isr.c     |  179 +++-
 drivers/scsi/qla2xxx/qla_mbx.c     |  257 +++++-
 drivers/scsi/qla2xxx/qla_mid.c     |   10 +
 drivers/scsi/qla2xxx/qla_os.c      |  648 +++++++++++++-
 drivers/scsi/qla2xxx/qla_tmpl.c    |   17 +-
 drivers/scsi/qla2xxx/qla_version.h |    2 +-
 14 files changed, 2453 insertions(+), 1143 deletions(-)

-- 
2.12.0


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

end of thread, other threads:[~2020-02-25  4:32 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-12 21:44 [PATCH 00/25] qla2xxx: Updates for the driver Himanshu Madhani
2020-02-12 21:44 ` [PATCH 01/25] qla2xxx: Add beacon LED config sysfs interface Himanshu Madhani
2020-02-12 21:44 ` [PATCH 02/25] qla2xxx: Move free of fcport out of interrupt context Himanshu Madhani
2020-02-12 21:44 ` [PATCH 03/25] qla2xxx: Add sysfs node for D-Port Diagnostics AEN data Himanshu Madhani
2020-02-12 21:44 ` [PATCH 04/25] qla2xxx: Remove all DIX-0 references Himanshu Madhani
2020-02-12 21:44 ` [PATCH 05/25] qla2xxx: Add endianizer macro calls to fc host stats Himanshu Madhani
2020-02-12 21:44 ` [PATCH 06/25] qla2xxx: Add changes in preparation for vendor extended FDMI/RDP Himanshu Madhani
2020-02-12 21:44 ` [PATCH 07/25] qla2xxx: Add vendor extended RDP additions and amendments Himanshu Madhani
2020-02-12 21:44 ` [PATCH 08/25] qla2xxx: Add ql2xrdpenable module parameter for RDP Himanshu Madhani
2020-02-12 21:44 ` [PATCH 09/25] qla2xxx: Add vendor extended FDMI commands Himanshu Madhani
2020-02-12 21:44 ` [PATCH 10/25] qla2xxx: Display message for FCE enabled Himanshu Madhani
2020-02-12 21:44 ` [PATCH 11/25] qla2xxx: Show correct port speed capabilities for RDP command Himanshu Madhani
2020-02-12 21:44 ` [PATCH 12/25] qla2xxx: Cleanup ELS/PUREX iocb fields Himanshu Madhani
2020-02-12 21:44 ` [PATCH 13/25] qla2xxx: Add deferred queue for processing ABTS and RDP Himanshu Madhani
2020-02-12 21:44 ` [PATCH 14/25] qla2xxx: Handle cases for limiting RDP response payload length Himanshu Madhani
2020-02-12 21:44 ` [PATCH 15/25] qla2xxx: Fix RDP response size Himanshu Madhani
2020-02-12 21:44 ` [PATCH 16/25] qla2xxx: Use endian macros to assign static fields in fwdump header Himanshu Madhani
2020-02-12 21:44 ` [PATCH 17/25] qla2xxx: Correction to selection of loopback/echo test Himanshu Madhani
2020-02-12 21:44 ` [PATCH 18/25] qla2xxx: Fix qla2x00_echo_test() based on ISP type Himanshu Madhani
2020-02-12 21:44 ` [PATCH 19/25] qla2xxx: Print portname for logging in qla24xx_logio_entry() Himanshu Madhani
2020-02-12 21:44 ` [PATCH 20/25] qla2xxx: Use correct ISP28xx active FW region Himanshu Madhani
2020-02-12 21:44 ` [PATCH 21/25] qla2xxx: Save rscn_gen for new fcport Himanshu Madhani
2020-02-12 21:44 ` [PATCH 22/25] qla2xxx: Fix control flags for login/logout IOCB Himanshu Madhani
2020-02-12 21:44 ` [PATCH 23/25] qla2xxx: Add fixes for mailbox command Himanshu Madhani
2020-02-12 21:44 ` [PATCH 24/25] qla2xxx: Use QLA_FW_STOPPED macro to propagate flag Himanshu Madhani
2020-02-12 21:44 ` [PATCH 25/25] qla2xxx: Update driver version to 10.01.00.24-k Himanshu Madhani
2020-02-21 23:33 ` [PATCH 00/25] qla2xxx: Updates for the driver Martin K. Petersen
2020-02-24 16:36   ` Himanshu Madhani
2020-02-25  4:32   ` Bart Van Assche

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.