public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] libfc, libfcoe and fcoe updates for scsi-misc
@ 2011-06-20 23:30 Robert Love
  2011-06-20 23:30 ` [PATCH 01/12] tcm_fc: Fix warning in file tfc_io Robert Love
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: Robert Love @ 2011-06-20 23:30 UTC (permalink / raw)
  To: linux-scsi

The following series contains target offload patches and
a few bug fixes. The main change that this series presents
is target mode offload support. These are the same offloads
that the initiator uses, so there is no new hardware support.
There is a new hook in the netdev_ops structure to setup
a DDP context for an offloadable exchange. If ndo_fcoe_ddp_target
is present on the netdevice the fcoe stack will make use of
it. This interfce was merged at the v3.0 merge window, so
all depedencies should already be complete and in-kernel.

Aside from this feature there are a few fixes to tcm_fc as
well as libfc and fcoe.

All patches were tested against scsi-misc on the day of
this posting.

---

Kiran Patil (8):
      tcm_fc: Fix warning in file tfc_io
      libfc: Enhancement to RPORT state machine applicable only for VN2VN mode
      fcoe: Unable to select the exchangeID from offload pool for storage targets
      fcoe: Round-robin based selection of CPU for post-processing of incoming commands
      fcoe: Amends previous patch, Round-robin based selection of CPU for post processing of incoming request for FCoE target
      libfc:Fix for exchange/seq loopup failure when FCoE stack is used as target and connected to windows initaitor
      tcm_fc: Fix ft_send_tm-bug and drop ft_get_lun_for_cmd usage
      tcm_fc: Fixing reference counting problem which was causing ft_sess to be deleted.

Neerav Parikh (1):
      fcoe: Rearrange fcoe port and NPIV port cleanup

Vasu Dev (1):
      libfc: post reset event on lport reset

Yi Zou (2):
      libfc, tcm_fc: add ddp_targ() to libfc function template to supprot FCoE DDP in target mode
      fcoe: support ndo_fcoe_ddp_target() for DDP in FCoE targe


 drivers/scsi/fcoe/fcoe.c        |  174 ++++++++++++++++++++++++++++++---------
 drivers/scsi/libfc/fc_exch.c    |   26 +++++-
 drivers/scsi/libfc/fc_lport.c   |    2 
 drivers/scsi/libfc/fc_rport.c   |   14 +++
 drivers/target/tcm_fc/tcm_fc.h  |    2 
 drivers/target/tcm_fc/tfc_cmd.c |   88 +++++++++++---------
 drivers/target/tcm_fc/tfc_io.c  |    2 
 include/scsi/libfc.h            |    8 ++
 8 files changed, 233 insertions(+), 83 deletions(-)

-- 
Thanks, //Rob

^ permalink raw reply	[flat|nested] 11+ messages in thread
* [PATCH 00/12] libfc, libfcoe and fcoe updates for scsi-misc
@ 2012-02-11  1:17 Robert Love
  0 siblings, 0 replies; 11+ messages in thread
From: Robert Love @ 2012-02-11  1:17 UTC (permalink / raw)
  To: linux-scsi

This series contains a variety of fixes and general
improvements to the libfc, libfcoe and fcoe kernel
modules.

Note that this series resends Neerav Parikh's FDMI
feature patch series that was previously posted to
linux-scsi. It's a FC/FCoE feature, so I put it in
my tree to make sure I keep track of it. If I should
resend this series without it, please let me know,
I would be happy to do so.

Aside from the contributors own testing I ran
basic tests against this series on scsi-misc on
the day of this posting.

---

Bhanu Prakash Gollapudi (2):
      libfc: Fix panic in fc_exch_recv
      libfc: Handle discovery failure during ctlr link down

Neerav Parikh (6):
      scsi_transport_fc: Add FDMI host attributes
      scsi_transport_fc: Getting FC Port Speed in sync with FC-GS
      libfc: Make the libfc Common Transport(CT) code generic
      libfc: Add support for FDMI
      fcoe: Add support for FDMI in fcoe
      fcoe: Allow exposing FDMI attributes via sysfs

Robert Love (4):
      libfcoe: Don't KERN_ERR on netdev notification
      fcoe: Rename out_nomod label to out_putmod
      fcoe: Do not switch context in vport_delete callback
      fcoe: Remove reference counting on 'stuct fcoe_interface'


 drivers/scsi/fcoe/fcoe.c           |  159 ++++++++++------
 drivers/scsi/fcoe/fcoe.h           |    3 
 drivers/scsi/fcoe/fcoe_transport.c |    4 
 drivers/scsi/libfc/fc_disc.c       |    7 +
 drivers/scsi/libfc/fc_elsct.c      |    3 
 drivers/scsi/libfc/fc_exch.c       |    7 -
 drivers/scsi/libfc/fc_lport.c      |  227 ++++++++++++++++++++++-
 drivers/scsi/scsi_transport_fc.c   |   30 +++
 include/scsi/fc/fc_ms.h            |  213 +++++++++++++++++++++
 include/scsi/fc_encode.h           |  363 +++++++++++++++++++++++++++++++++++-
 include/scsi/libfc.h               |   11 +
 include/scsi/scsi_transport_fc.h   |   32 +++
 12 files changed, 976 insertions(+), 83 deletions(-)
 create mode 100644 include/scsi/fc/fc_ms.h

-- 
Thanks, //Rob

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

end of thread, other threads:[~2012-02-11  1:17 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-20 23:30 [PATCH 00/12] libfc, libfcoe and fcoe updates for scsi-misc Robert Love
2011-06-20 23:30 ` [PATCH 01/12] tcm_fc: Fix warning in file tfc_io Robert Love
2011-06-20 23:30 ` [PATCH 02/12] libfc: Enhancement to RPORT state machine applicable only for VN2VN mode Robert Love
2011-06-20 23:30 ` [PATCH 03/12] libfc, tcm_fc: add ddp_targ() to libfc function template to supprot FCoE DDP in target mode Robert Love
2011-06-20 23:30 ` [PATCH 04/12] fcoe: support ndo_fcoe_ddp_target() for DDP in FCoE targe Robert Love
2011-06-20 23:30 ` [PATCH 05/12] fcoe: Unable to select the exchangeID from offload pool for storage targets Robert Love
2011-06-20 23:30 ` [PATCH 06/12] fcoe: Round-robin based selection of CPU for post-processing of incoming commands Robert Love
2011-06-20 23:30 ` [PATCH 07/12] fcoe: Amends previous patch, Round-robin based selection of CPU for post processing of incoming request for FCoE target Robert Love
2011-06-20 23:30 ` [PATCH 08/12] libfc:Fix for exchange/seq loopup failure when FCoE stack is used as target and connected to windows initaitor Robert Love
2011-06-20 23:55 ` [PATCH 00/12] libfc, libfcoe and fcoe updates for scsi-misc Love, Robert W
  -- strict thread matches above, loose matches on Subject: below --
2012-02-11  1:17 Robert Love

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