From: james.smart@broadcom.com (James Smart)
Subject: [PATCH 0/3] nvme-fabrics: Add NVME FC Transport support to lpfc
Date: Fri, 22 Jul 2016 17:24:00 -0700 [thread overview]
Message-ID: <5792b920.7v71BUERlAKN8sK4%james.smart@broadcom.com> (raw)
This patchset adds NVME support to the lpfc FC driver. It reworks
the core driver for both NVME and SCSI protocol support, then adds the
nvme-over-fabrics host and target interfaces which connect to the
NVME FC transport lower-level api.
Patches are cut against the linux-nvme for-4.8/drivers branch
Dependent on:
-the u64 parser patch just posted
-the lpfc 11.2.0.0 patch set posted to linux-scsi a couple weeks back.
http://www.spinics.net/lists/linux-scsi/msg97964.html
http://www.spinics.net/lists/linux-scsi/msg98219.html
Caveats:
-Depends on the lpfc 11.2.0.0 patch set posted to linux-scsi being present
in the tree:
http://www.spinics.net/lists/linux-scsi/msg97964.html
http://www.spinics.net/lists/linux-scsi/msg98219.html
-Depends on the NVME FC Transport patches
-cut against the linux-nvme for-4.8/drivers branch
-Individual patches not tested much individually. All testing has been
with all 3 patches together - base, host, and target.
-Driver depends on NVME-supporting firmware which is not yet generally
available. Contact me if there is a need to obtain the firmware.
-- james
James Smart (3):
nvme_fabrics: Rework lpfc base driver to support the NVME protocol
nvme-fabrics: Add nvme host FC transport support to lpfc driver
nvme-fabrics: Add nvme target FC transport support to lpfc driver
drivers/scsi/lpfc/Makefile | 7 +-
drivers/scsi/lpfc/lpfc.h | 43 +-
drivers/scsi/lpfc/lpfc_attr.c | 69 +-
drivers/scsi/lpfc/lpfc_crtn.h | 32 +-
drivers/scsi/lpfc/lpfc_ct.c | 379 +++++++---
drivers/scsi/lpfc/lpfc_debugfs.c | 636 ++++++++++++++--
drivers/scsi/lpfc/lpfc_debugfs.h | 119 ++-
drivers/scsi/lpfc/lpfc_disc.h | 17 +-
drivers/scsi/lpfc/lpfc_els.c | 212 ++++--
drivers/scsi/lpfc/lpfc_hbadisc.c | 352 ++++++++-
drivers/scsi/lpfc/lpfc_hw.h | 49 +-
drivers/scsi/lpfc/lpfc_hw4.h | 128 +++-
drivers/scsi/lpfc/lpfc_init.c | 744 ++++++++++++++----
drivers/scsi/lpfc/lpfc_logmsg.h | 1 +
drivers/scsi/lpfc/lpfc_mbox.c | 19 +-
drivers/scsi/lpfc/lpfc_mem.c | 122 ++-
drivers/scsi/lpfc/lpfc_nportdisc.c | 150 +++-
drivers/scsi/lpfc/lpfc_nvme.c | 1447 ++++++++++++++++++++++++++++++++++++
drivers/scsi/lpfc/lpfc_nvme.h | 62 ++
drivers/scsi/lpfc/lpfc_nvmet.c | 1269 +++++++++++++++++++++++++++++++
drivers/scsi/lpfc/lpfc_nvmet.h | 72 ++
drivers/scsi/lpfc/lpfc_scsi.c | 12 +-
drivers/scsi/lpfc/lpfc_scsi.h | 19 +-
drivers/scsi/lpfc/lpfc_sli.c | 785 +++++++++++++++----
drivers/scsi/lpfc/lpfc_sli.h | 30 +-
drivers/scsi/lpfc/lpfc_sli4.h | 28 +-
drivers/scsi/lpfc/lpfc_version.h | 2 +-
drivers/scsi/lpfc/lpfc_vport.c | 1 +
28 files changed, 6121 insertions(+), 685 deletions(-)
create mode 100644 drivers/scsi/lpfc/lpfc_nvme.c
create mode 100644 drivers/scsi/lpfc/lpfc_nvme.h
create mode 100644 drivers/scsi/lpfc/lpfc_nvmet.c
create mode 100644 drivers/scsi/lpfc/lpfc_nvmet.h
--
2.5.0
WARNING: multiple messages have this Message-ID (diff)
From: james.smart@broadcom.com (James Smart)
To: linux-nvme@lists.infradead.org, linux-scsi@vger.kernel.org
Subject: [PATCH 0/3] nvme-fabrics: Add NVME FC Transport support to lpfc
Date: Fri, 22 Jul 2016 17:24:00 -0700 [thread overview]
Message-ID: <5792b920.7v71BUERlAKN8sK4%james.smart@broadcom.com> (raw)
This patchset adds NVME support to the lpfc FC driver. It reworks
the core driver for both NVME and SCSI protocol support, then adds the
nvme-over-fabrics host and target interfaces which connect to the
NVME FC transport lower-level api.
Patches are cut against the linux-nvme for-4.8/drivers branch
Dependent on:
-the u64 parser patch just posted
-the lpfc 11.2.0.0 patch set posted to linux-scsi a couple weeks back.
http://www.spinics.net/lists/linux-scsi/msg97964.html
http://www.spinics.net/lists/linux-scsi/msg98219.html
Caveats:
-Depends on the lpfc 11.2.0.0 patch set posted to linux-scsi being present
in the tree:
http://www.spinics.net/lists/linux-scsi/msg97964.html
http://www.spinics.net/lists/linux-scsi/msg98219.html
-Depends on the NVME FC Transport patches
-cut against the linux-nvme for-4.8/drivers branch
-Individual patches not tested much individually. All testing has been
with all 3 patches together - base, host, and target.
-Driver depends on NVME-supporting firmware which is not yet generally
available. Contact me if there is a need to obtain the firmware.
-- james
James Smart (3):
nvme_fabrics: Rework lpfc base driver to support the NVME protocol
nvme-fabrics: Add nvme host FC transport support to lpfc driver
nvme-fabrics: Add nvme target FC transport support to lpfc driver
drivers/scsi/lpfc/Makefile | 7 +-
drivers/scsi/lpfc/lpfc.h | 43 +-
drivers/scsi/lpfc/lpfc_attr.c | 69 +-
drivers/scsi/lpfc/lpfc_crtn.h | 32 +-
drivers/scsi/lpfc/lpfc_ct.c | 379 +++++++---
drivers/scsi/lpfc/lpfc_debugfs.c | 636 ++++++++++++++--
drivers/scsi/lpfc/lpfc_debugfs.h | 119 ++-
drivers/scsi/lpfc/lpfc_disc.h | 17 +-
drivers/scsi/lpfc/lpfc_els.c | 212 ++++--
drivers/scsi/lpfc/lpfc_hbadisc.c | 352 ++++++++-
drivers/scsi/lpfc/lpfc_hw.h | 49 +-
drivers/scsi/lpfc/lpfc_hw4.h | 128 +++-
drivers/scsi/lpfc/lpfc_init.c | 744 ++++++++++++++----
drivers/scsi/lpfc/lpfc_logmsg.h | 1 +
drivers/scsi/lpfc/lpfc_mbox.c | 19 +-
drivers/scsi/lpfc/lpfc_mem.c | 122 ++-
drivers/scsi/lpfc/lpfc_nportdisc.c | 150 +++-
drivers/scsi/lpfc/lpfc_nvme.c | 1447 ++++++++++++++++++++++++++++++++++++
drivers/scsi/lpfc/lpfc_nvme.h | 62 ++
drivers/scsi/lpfc/lpfc_nvmet.c | 1269 +++++++++++++++++++++++++++++++
drivers/scsi/lpfc/lpfc_nvmet.h | 72 ++
drivers/scsi/lpfc/lpfc_scsi.c | 12 +-
drivers/scsi/lpfc/lpfc_scsi.h | 19 +-
drivers/scsi/lpfc/lpfc_sli.c | 785 +++++++++++++++----
drivers/scsi/lpfc/lpfc_sli.h | 30 +-
drivers/scsi/lpfc/lpfc_sli4.h | 28 +-
drivers/scsi/lpfc/lpfc_version.h | 2 +-
drivers/scsi/lpfc/lpfc_vport.c | 1 +
28 files changed, 6121 insertions(+), 685 deletions(-)
create mode 100644 drivers/scsi/lpfc/lpfc_nvme.c
create mode 100644 drivers/scsi/lpfc/lpfc_nvme.h
create mode 100644 drivers/scsi/lpfc/lpfc_nvmet.c
create mode 100644 drivers/scsi/lpfc/lpfc_nvmet.h
--
2.5.0
next reply other threads:[~2016-07-23 0:24 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-23 0:24 James Smart [this message]
2016-07-23 0:24 ` [PATCH 0/3] nvme-fabrics: Add NVME FC Transport support to lpfc James Smart
2016-08-11 21:24 ` Christoph Hellwig
2016-08-11 21:24 ` Christoph Hellwig
2016-08-22 17:41 ` James Smart
2016-08-22 17:41 ` James Smart
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=5792b920.7v71BUERlAKN8sK4%james.smart@broadcom.com \
--to=james.smart@broadcom.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 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.