public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] Open-FCoE fixes and features for 2.6.30 merge window
@ 2009-03-17 18:41 Robert Love
  2009-03-17 18:41 ` [PATCH 01/14] fcoe: Initialize all possilbe skb_queue(s) when module is loaded Robert Love
                   ` (13 more replies)
  0 siblings, 14 replies; 30+ messages in thread
From: Robert Love @ 2009-03-17 18:41 UTC (permalink / raw)
  To: James.Bottomley, linux-scsi

The following series implements a few fixes, some preparation work and the implementation
of FIP.

1) Fix of CPU hotplug handling.

2) Removal of fc_transport_fcoe.[ch]. This code was written so a LLD could load a transport
   for Ethernet devices that support FCoE offloads. This aproach was discarded in favor of
   directly providing offload capabilities through netdev. FCoE offload patches have been
   Ack'd by netdev and are in the scsi-misc tree already. In this set we just clean up the
   previous and unused FCoE transport method.
   
3) fcoe/* reorgainzation. Since both FIP and fnic are targeting the 2.6.30 merge window we
   wanted to do some cleanup of the fcoe layer. We've better defined each module so that
   fcoe.ko will only have the netdev related SW implementation (fnic does not use) and
   libfcoe.ko which will have common FCoE routines available to all FCoE LLDs.

4) FIP implementation. FIP == FCoE Initialization Protocol. This is a new standard way to
   discover FCoE capable switches. This code becomes the majority of libfcoe.ko. These
   patches had previously been sent to linux-scsi. This series resends them as they've
   been slightly modified to better fit into the reorganization. Functionality is the
   same as previously posted.

This patchset is built on scsi-misc-2.6 and are intended for 2.6.30.

---

Joe Eykholt (2):
      fcoe, libfcoe: Add support for FIP. FCoE discovery and keep-alive.
      fcoe: Add a header file defining the FIP protocol for FCoE.

Robert Love (4):
      fcoe: create/destroy fcoe Rx threads on CPU hotplug events
      fcoe: Use per-CPU kernel function for dev_stats instead of an array
      fcoe: Use percpu kernel funcs for struct fcoe_percpu_s
      fcoe: Initialize all possilbe skb_queue(s) when module is loaded

Vasu Dev (8):
      fcoe, libfc: fix double fcoe_softc memory alloc
      fcoe: cleans up libfcoe.h and adds fcoe.h for fcoe module
      fcoe: moves common FCoE library API functions to libfcoe module
      fcoe, libfc, scsi: adds libfcoe module
      fcoe: renames libfcoe.c to fcoe.c as the only fcoe module file
      fcoe: removes default sw transport code file fcoe_sw.c
      fcoe: removes fc_transport_fcoe.[ch] code files
      fcoe: prep work to completely remove fc_transport_fcoe code


 drivers/scsi/Kconfig                  |    8 
 drivers/scsi/Makefile                 |    1 
 drivers/scsi/fcoe/Makefile            |    8 
 drivers/scsi/fcoe/fc_transport_fcoe.c |  443 -------
 drivers/scsi/fcoe/fcoe.c              | 1865 ++++++++++++++++++++++++++++
 drivers/scsi/fcoe/fcoe.h              |   75 +
 drivers/scsi/fcoe/fcoe_sw.c           |  561 --------
 drivers/scsi/fcoe/libfcoe.c           | 2216 +++++++++++++++------------------
 drivers/scsi/libfc/fc_fcp.c           |   10 
 drivers/scsi/libfc/fc_lport.c         |   11 
 include/scsi/fc/fc_fip.h              |  237 ++++
 include/scsi/fc_transport_fcoe.h      |   54 -
 include/scsi/libfc.h                  |   45 +
 include/scsi/libfcoe.h                |  227 ++-
 14 files changed, 3396 insertions(+), 2365 deletions(-)
 delete mode 100644 drivers/scsi/fcoe/fc_transport_fcoe.c
 create mode 100644 drivers/scsi/fcoe/fcoe.c
 create mode 100644 drivers/scsi/fcoe/fcoe.h
 delete mode 100644 drivers/scsi/fcoe/fcoe_sw.c
 create mode 100644 include/scsi/fc/fc_fip.h
 delete mode 100644 include/scsi/fc_transport_fcoe.h

-- 
//Rob

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

end of thread, other threads:[~2009-03-31 22:51 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-17 18:41 [PATCH 00/14] Open-FCoE fixes and features for 2.6.30 merge window Robert Love
2009-03-17 18:41 ` [PATCH 01/14] fcoe: Initialize all possilbe skb_queue(s) when module is loaded Robert Love
2009-03-17 18:41 ` [PATCH 02/14] fcoe: Use percpu kernel funcs for struct fcoe_percpu_s Robert Love
2009-03-17 18:41 ` [PATCH 03/14] fcoe: Use per-CPU kernel function for dev_stats instead of an array Robert Love
2009-03-31 22:51   ` [PATCH 3/14 v2] " Robert Love
2009-03-17 18:41 ` [PATCH 04/14] fcoe: create/destroy fcoe Rx threads on CPU hotplug events Robert Love
2009-03-23  0:59   ` James Bottomley
2009-03-23 19:42     ` Robert Love
2009-03-24  3:50       ` James Bottomley
2009-03-17 18:41 ` [PATCH 05/14] fcoe: prep work to completely remove fc_transport_fcoe code Robert Love
2009-03-24 23:19   ` [PATCH] " Robert Love
2009-03-26  3:03     ` [PATCH] PM port setting and attached SATA port selector in discover Andy Yan
2009-03-27 16:52       ` James Bottomley
2009-03-27 16:03   ` [PATCH] fcoe: prep work to completely remove fc_transport_fcoe code Robert Love
2009-03-27 16:12     ` Love, Robert W
2009-03-17 18:41 ` [PATCH 06/14] fcoe: removes fc_transport_fcoe.[ch] code files Robert Love
2009-03-24 23:24   ` [PATCH] " Robert Love
2009-03-27 16:05   ` Robert Love
2009-03-17 18:42 ` [PATCH 07/14] fcoe: removes default sw transport code file fcoe_sw.c Robert Love
2009-03-24 23:27   ` [PATCH] " Robert Love
2009-03-27 16:06   ` Robert Love
2009-03-17 18:42 ` [PATCH 08/14] fcoe: renames libfcoe.c to fcoe.c as the only fcoe module file Robert Love
2009-03-24 23:27   ` [PATCH] " Robert Love
2009-03-27 16:07   ` Robert Love
2009-03-17 18:42 ` [PATCH 09/14] fcoe, libfc, scsi: adds libfcoe module Robert Love
2009-03-17 18:42 ` [PATCH 10/14] fcoe: moves common FCoE library API functions to " Robert Love
2009-03-17 18:42 ` [PATCH 11/14] fcoe: cleans up libfcoe.h and adds fcoe.h for fcoe module Robert Love
2009-03-17 18:42 ` [PATCH 12/14] fcoe, libfc: fix double fcoe_softc memory alloc Robert Love
2009-03-17 18:42 ` [PATCH 13/14] fcoe: Add a header file defining the FIP protocol for FCoE Robert Love
2009-03-17 18:42 ` [PATCH 14/14] fcoe, libfcoe: Add support for FIP. FCoE discovery and keep-alive Robert Love

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox