From: Robert Love <robert.w.love@intel.com>
To: james.bottomley@hansenpartnership.com, linux-scsi@vger.kernel.org
Cc: jgarzik@redhat.com, james.smart@emulex.com, davem@davemloft.net,
michaelc@cs.wisc.edu, jeffrey.t.kirsher@intel.com,
jeykholt@cisco.com
Subject: [PATCH 0/3] Open-FCoE Submission
Date: Tue, 18 Nov 2008 14:20:51 -0800 [thread overview]
Message-ID: <20081118222051.2289.81361.stgit@fritz> (raw)
The following series adds the following code to the SCSI subsystem.
1) FC and FCoE protocol definitions in header files
- Files are added in include/scsi/fc/
- New files are: fc_els.h, fc_encaps.h, fc_fc2.h,
fc_fcp.h, fc_fs.h, fc_gs.h and fc_ns.h
2) libfc - a FC assist library
- Composed of 5 sub-components: Exchange Manager, Local Port
Remote Port, Discovery and SCSI-FCP
- Uses libfc_function_template for cross-layer calls
- Uses struct fc_lport as primary object shared by all
sub-modules
- Common code defined in include/scsi/libfc.h
3) fcoe - a FCoE initiator implementation
- Simple encapsulation and unpacking layer
- Interacts with netdev
- Initial support for FCoE offload
- Uses /sys/module/fcoe/parameters/create and destroy for
enabling/disabling FCoE connection over a particular Ethernet
adapter
- Works on any Ethernet adapter
These patches apply to both the scsi-misc and scsi-rc-fixes trees.
We've spent a lot of time recently improving stability and creating
different interfaces for potential users. We'd like to be queued for
the 2.6.29 merge window. We're actively developing this stack and
we will continue to have a lot of changes, but I think that the code is
at a good place right now and it's ready for inclusion. Please let me
know what you think.
---
Robert Love (3):
fcoe: Fibre Channel over Ethernet
libfc: A modular Fibre Channel library
FC protocol definition header files
drivers/scsi/Kconfig | 13
drivers/scsi/Makefile | 2
drivers/scsi/fcoe/Makefile | 8
drivers/scsi/fcoe/fc_transport_fcoe.c | 446 +++++++
drivers/scsi/fcoe/fcoe_sw.c | 488 ++++++++
drivers/scsi/fcoe/libfcoe.c | 1506 +++++++++++++++++++++++
drivers/scsi/libfc/Makefile | 12
drivers/scsi/libfc/fc_disc.c | 932 ++++++++++++++
drivers/scsi/libfc/fc_elsct.c | 71 +
drivers/scsi/libfc/fc_exch.c | 1971 +++++++++++++++++++++++++++++++
drivers/scsi/libfc/fc_fcp.c | 2130 +++++++++++++++++++++++++++++++++
drivers/scsi/libfc/fc_frame.c | 89 +
drivers/scsi/libfc/fc_lport.c | 1525 ++++++++++++++++++++++++
drivers/scsi/libfc/fc_rport.c | 1277 ++++++++++++++++++++
include/scsi/fc/fc_els.h | 802 ++++++++++++
include/scsi/fc/fc_encaps.h | 138 ++
include/scsi/fc/fc_fc2.h | 124 ++
include/scsi/fc/fc_fcoe.h | 102 ++
include/scsi/fc/fc_fcp.h | 199 +++
include/scsi/fc/fc_fs.h | 340 +++++
include/scsi/fc/fc_gs.h | 93 +
include/scsi/fc/fc_ns.h | 159 ++
include/scsi/fc_encode.h | 309 +++++
include/scsi/fc_frame.h | 239 ++++
include/scsi/fc_transport_fcoe.h | 54 +
include/scsi/libfc.h | 917 ++++++++++++++
include/scsi/libfcoe.h | 177 +++
27 files changed, 14123 insertions(+), 0 deletions(-)
create mode 100644 drivers/scsi/fcoe/Makefile
create mode 100644 drivers/scsi/fcoe/fc_transport_fcoe.c
create mode 100644 drivers/scsi/fcoe/fcoe_sw.c
create mode 100644 drivers/scsi/fcoe/libfcoe.c
create mode 100644 drivers/scsi/libfc/Makefile
create mode 100644 drivers/scsi/libfc/fc_disc.c
create mode 100644 drivers/scsi/libfc/fc_elsct.c
create mode 100644 drivers/scsi/libfc/fc_exch.c
create mode 100644 drivers/scsi/libfc/fc_fcp.c
create mode 100644 drivers/scsi/libfc/fc_frame.c
create mode 100644 drivers/scsi/libfc/fc_lport.c
create mode 100644 drivers/scsi/libfc/fc_rport.c
create mode 100644 include/scsi/fc/fc_els.h
create mode 100644 include/scsi/fc/fc_encaps.h
create mode 100644 include/scsi/fc/fc_fc2.h
create mode 100644 include/scsi/fc/fc_fcoe.h
create mode 100644 include/scsi/fc/fc_fcp.h
create mode 100644 include/scsi/fc/fc_fs.h
create mode 100644 include/scsi/fc/fc_gs.h
create mode 100644 include/scsi/fc/fc_ns.h
create mode 100644 include/scsi/fc_encode.h
create mode 100644 include/scsi/fc_frame.h
create mode 100644 include/scsi/fc_transport_fcoe.h
create mode 100644 include/scsi/libfc.h
create mode 100644 include/scsi/libfcoe.h
--
//Rob
next reply other threads:[~2008-11-18 22:20 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-18 22:20 Robert Love [this message]
2008-11-18 22:21 ` [PATCH 1/3] FC protocol definition header files Robert Love
2008-11-18 22:21 ` [PATCH 2/3] libfc: A modular Fibre Channel library Robert Love
2008-11-24 10:13 ` Andi Kleen
2008-11-25 20:47 ` Love, Robert W
2008-12-02 23:36 ` Love, Robert W
2008-11-18 22:21 ` [PATCH 3/3] fcoe: Fibre Channel over Ethernet Robert Love
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=20081118222051.2289.81361.stgit@fritz \
--to=robert.w.love@intel.com \
--cc=davem@davemloft.net \
--cc=james.bottomley@hansenpartnership.com \
--cc=james.smart@emulex.com \
--cc=jeffrey.t.kirsher@intel.com \
--cc=jeykholt@cisco.com \
--cc=jgarzik@redhat.com \
--cc=linux-scsi@vger.kernel.org \
--cc=michaelc@cs.wisc.edu \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox