From: Robert Love <robert.w.love@intel.com>
To: James.Bottomley@HansenPartnership.com, linux-scsi@vger.kernel.org
Subject: [PATCH 00/24] libfc, libfcoe, fcoe and fnic updates for 2.6.32
Date: Fri, 18 Sep 2009 15:48:48 -0700 [thread overview]
Message-ID: <20090918224847.5928.52092.stgit@localhost.localdomain> (raw)
The following series implements the following changes-
1) Use of FCoE netdev changes
- Use of the FCoE MTU and FCoE enable/disable functionality
in netdev. The dependency for these patches was recently
merged into mainline through net-next so there is no need
for a post-merge tree.
2) New callback from libfc to LLDs
- Callback when the FCID on a local port is changed. This
allows LLDs (fcoe and fnic) to gather the FCID, timeout
values and assigned MAC address.
3) FIP support for fnic
- Adds support for FCoE Initialization Protocol to the
fnic driver.
4) Miscellaneous fixes and improvements...
5) Update MAINTAINERS file.
These patches are built on scsi-misc.git + Vasu's queue_depth
patches submitted to linux-scsi + the 35 previously submitted
libfc, libfcoe and fcoe patches that have not yet been committed
to scsi-misc.
---
Joe Eykholt (15):
libfc: register FC4 features with the FC switch
fnic: Add FIP support to the fnic driver
libfcoe: fcoe: simplify receive FLOGI response
libfc: add host number to lport link up/down messages.
libfc: add set_fid function to libfc template
libfc: fix fc_els_resp_type to correct display of CT responses
libfc: fix symbolic name registrations smashing skb data
libfc: fix RNN_ID smashing skb payload
libfcoe: don't send ELS in FIP mode if no FCF selected
libfc: don't WARN_ON in lport_timeout for RESET state
libfcoe: FIP should report link to libfc whether selected or not
libfcoe: fip: allow FIP receive to be called from IRQ.
libfcoe: fip: use SCSI host number to identify debug messages.
libfcoe: Allow FIP to be disabled by the driver
libfc: lport: fix minor documentation errors
Mike Christie (1):
fcoe: initialize return value in fcoe_destroy
Robert Love (1):
MAINTAINERS: Update for libfc, libfcoe, fcoe
Vasu Dev (3):
libfc: removes unused disc_work and ex_list
libfc: adds missing exch release for accepted RRQ
libfc: removes initializing fc_cpu_order and fc_cpu_mask per lport
Yi Zou (3):
fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off in LLD
fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size (lport->mfs)
fcoe: remove extra function decalrations
john fastabend (1):
fcoe: add check to fail gracefully in bonding mode
MAINTAINERS | 11 +
drivers/scsi/Kconfig | 2
drivers/scsi/fcoe/fcoe.c | 58 +++--
drivers/scsi/fcoe/fcoe.h | 6
drivers/scsi/fcoe/libfcoe.c | 142 ++++++------
drivers/scsi/fnic/fnic.h | 23 +-
drivers/scsi/fnic/fnic_fcs.c | 499 ++++++++++++++++++++---------------------
drivers/scsi/fnic/fnic_main.c | 71 +++---
drivers/scsi/fnic/fnic_res.c | 5
drivers/scsi/fnic/fnic_res.h | 50 ++++
drivers/scsi/fnic/fnic_scsi.c | 73 +++---
drivers/scsi/fnic/vnic_scsi.h | 1
drivers/scsi/libfc/fc_elsct.c | 41 +++
drivers/scsi/libfc/fc_exch.c | 37 ++-
drivers/scsi/libfc/fc_lport.c | 89 +++++--
include/scsi/fc/fc_fcp.h | 6
include/scsi/fc/fc_ns.h | 13 +
include/scsi/fc_encode.h | 30 ++
include/scsi/libfc.h | 23 ++
include/scsi/libfcoe.h | 5
20 files changed, 693 insertions(+), 492 deletions(-)
--
//Rob
next reply other threads:[~2009-09-18 22:48 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-09-18 22:48 Robert Love [this message]
2009-09-18 22:48 ` [PATCH 01/24] libfc: lport: fix minor documentation errors Robert Love
2009-09-18 22:48 ` [PATCH 02/24] libfcoe: Allow FIP to be disabled by the driver Robert Love
2009-09-18 22:49 ` [PATCH 03/24] libfcoe: fip: use SCSI host number to identify debug messages Robert Love
2009-09-18 22:49 ` [PATCH 04/24] libfcoe: fip: allow FIP receive to be called from IRQ Robert Love
2009-09-18 22:49 ` [PATCH 05/24] libfcoe: FIP should report link to libfc whether selected or not Robert Love
2009-09-18 22:49 ` [PATCH 06/24] libfc: don't WARN_ON in lport_timeout for RESET state Robert Love
2009-09-18 22:49 ` [PATCH 07/24] libfcoe: don't send ELS in FIP mode if no FCF selected Robert Love
2009-09-18 22:49 ` [PATCH 08/24] fcoe: remove extra function decalrations Robert Love
2009-09-18 22:49 ` [PATCH 09/24] libfc: removes initializing fc_cpu_order and fc_cpu_mask per lport Robert Love
2009-09-18 22:49 ` [PATCH 10/24] libfc: adds missing exch release for accepted RRQ Robert Love
2009-09-18 22:49 ` [PATCH 11/24] libfc: removes unused disc_work and ex_list Robert Love
2009-09-18 22:50 ` [PATCH 12/24] fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size (lport->mfs) Robert Love
2009-09-18 22:50 ` [PATCH 13/24] fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off in LLD Robert Love
2009-09-18 22:50 ` [PATCH 14/24] fcoe: initialize return value in fcoe_destroy Robert Love
2009-09-18 22:50 ` [PATCH 15/24] fcoe: add check to fail gracefully in bonding mode Robert Love
2009-09-18 22:50 ` [PATCH 16/24] libfc: fix RNN_ID smashing skb payload Robert Love
2009-09-18 22:50 ` [PATCH 17/24] libfc: fix symbolic name registrations smashing skb data Robert Love
2009-09-18 22:50 ` [PATCH 18/24] libfc: fix fc_els_resp_type to correct display of CT responses Robert Love
2009-09-18 22:50 ` [PATCH 19/24] libfc: add set_fid function to libfc template Robert Love
2009-09-18 22:50 ` [PATCH 20/24] libfc: add host number to lport link up/down messages Robert Love
2009-09-18 22:50 ` [PATCH 21/24] libfcoe: fcoe: simplify receive FLOGI response Robert Love
2009-09-18 22:50 ` [PATCH 22/24] fnic: Add FIP support to the fnic driver Robert Love
2009-09-18 22:51 ` [PATCH 23/24] libfc: register FC4 features with the FC switch Robert Love
2009-09-18 22:51 ` [PATCH 24/24] MAINTAINERS: Update for libfc, libfcoe, fcoe 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=20090918224847.5928.52092.stgit@localhost.localdomain \
--to=robert.w.love@intel.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=linux-scsi@vger.kernel.org \
/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