linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/6] qla2xxx: Add NVMe FC Fabric support in driver
@ 2017-06-21 20:48 Madhani, Himanshu
  2017-06-21 20:48 ` [PATCH v2 1/6] qla2xxx: Add FC-NVMe port discovery and PRLI handling Madhani, Himanshu
                   ` (6 more replies)
  0 siblings, 7 replies; 22+ messages in thread
From: Madhani, Himanshu @ 2017-06-21 20:48 UTC (permalink / raw)
  To: martin.petersen
  Cc: himanshu.madhani, linux-scsi, darren.trapp, giridhar.malavali,
	linux-nvme

From: Himanshu Madhani <himanshu.madhani@cavium.com>

Hi Martin,

This patch series adds NVMe FC fabric support for qla2xxx initiator mode
driver.

This series depends on the target multiqueue series that was sent out on
June 13,2017. (https://www.spinics.net/lists/linux-scsi/msg109827.html)

There are couple of new files qla_nvme.c and qla_nvme.h created to add 
the changes needed for registration to NVMe FC transport template as well
as error handling logic.

Patch 1 adds NVMe bits to various driver resources to help with NVMe remote
port discovery and PRLI handling in the driver.

Patch 2 addes NVMe command handling in driver. 

Patch 3 has bulk of NVMe changes which handles NVMe support based on a module
paramter which is used for firmware initialization and NVMe transport 
registration. All the logic to handle NVMe command and error handling is also
included in qla_nvme.c file.

Patch 4 and 5 are trivial changes to FDMI registration to allow NVMe FC-4 type
to switch management server.

Please apply this series to for-next for inclusion in 4.13 merge window.

Note: Patch 2 does not compile due to change which are part of patch 3 needed
      for sucessful compilation. Please apply patch 1-6 to be able to get
      commpilable driver. 

Changes from v1 --> v2

o Addressed review comments by Johannes and James Smart.
o Added Reviewed-by tags wherever applicable.
o Added Commit log for patches where applicable.
o Removed qla_nvme_hba_scan() as it turns out to be dead code until auto
  discovery mechanism is implemeted in FC-NVMe.
o Remove un-needed while loop in qla_nvme_delete().

Thanks,
Himanshu 

Duane Grigsby (5):
  qla2xxx: Add FC-NVMe port discovery and PRLI handling
  qla2xxx: Add FC-NVMe command handling
  qla2xxx: Add FC-NVMe F/W initialization and transport registration
  qla2xxx: Send FC4 type NVMe to the management server
  qla2xxx: Use FC-NMVe FC4 type for FDMI registration

Himanshu Madhani (1):
  qla2xxx: Update Driver version to 10.00.00.00-k

 drivers/scsi/qla2xxx/Makefile      |   2 +-
 drivers/scsi/qla2xxx/qla_dbg.c     |   9 +-
 drivers/scsi/qla2xxx/qla_def.h     |  54 ++-
 drivers/scsi/qla2xxx/qla_fw.h      |  35 +-
 drivers/scsi/qla2xxx/qla_gbl.h     |  18 +-
 drivers/scsi/qla2xxx/qla_gs.c      | 134 ++++++-
 drivers/scsi/qla2xxx/qla_init.c    | 187 ++++++++-
 drivers/scsi/qla2xxx/qla_iocb.c    |  57 +++
 drivers/scsi/qla2xxx/qla_isr.c     |  98 +++++
 drivers/scsi/qla2xxx/qla_mbx.c     |  54 ++-
 drivers/scsi/qla2xxx/qla_nvme.c    | 756 +++++++++++++++++++++++++++++++++++++
 drivers/scsi/qla2xxx/qla_nvme.h    | 132 +++++++
 drivers/scsi/qla2xxx/qla_os.c      |  60 ++-
 drivers/scsi/qla2xxx/qla_target.c  |   4 +-
 drivers/scsi/qla2xxx/qla_version.h |   6 +-
 15 files changed, 1559 insertions(+), 47 deletions(-)
 create mode 100644 drivers/scsi/qla2xxx/qla_nvme.c
 create mode 100644 drivers/scsi/qla2xxx/qla_nvme.h

-- 
2.12.0

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

end of thread, other threads:[~2017-06-28 21:23 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-21 20:48 [PATCH v2 0/6] qla2xxx: Add NVMe FC Fabric support in driver Madhani, Himanshu
2017-06-21 20:48 ` [PATCH v2 1/6] qla2xxx: Add FC-NVMe port discovery and PRLI handling Madhani, Himanshu
2017-06-22  6:28   ` Hannes Reinecke
2017-06-28 21:15   ` James Bottomley
2017-06-28 21:23     ` Madhani, Himanshu
2017-06-21 20:48 ` [PATCH v2 2/6] qla2xxx: Add FC-NVMe command handling Madhani, Himanshu
2017-06-22  6:28   ` Hannes Reinecke
2017-06-21 20:48 ` [PATCH v2 3/6] qla2xxx: Add FC-NVMe F/W initialization and transport registration Madhani, Himanshu
2017-06-22  6:32   ` Hannes Reinecke
2017-06-22  9:46   ` Johannes Thumshirn
     [not found]     ` <2d07d1fd-545b-0308-8a2b-5cfb59cbcf2b@broadcom.com>
2017-06-22 18:53       ` Johannes Thumshirn
2017-06-23  3:16     ` Madhani, Himanshu
2017-06-23  6:28       ` Johannes Thumshirn
2017-06-21 20:48 ` [PATCH v2 4/6] qla2xxx: Send FC4 type NVMe to the management server Madhani, Himanshu
2017-06-22  6:33   ` Hannes Reinecke
2017-06-22  9:51   ` Johannes Thumshirn
2017-06-21 20:48 ` [PATCH v2 5/6] qla2xxx: Use FC-NMVe FC4 type for FDMI registration Madhani, Himanshu
2017-06-22  6:33   ` Hannes Reinecke
2017-06-22  9:52   ` Johannes Thumshirn
2017-06-21 20:48 ` [PATCH v2 6/6] qla2xxx: Update Driver version to 10.00.00.00-k Madhani, Himanshu
2017-06-22  6:33   ` Hannes Reinecke
2017-06-28  1:49 ` [PATCH v2 0/6] qla2xxx: Add NVMe FC Fabric support in driver Martin K. Petersen

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