This patch set implements FCoE initialization protocol (FIP), see patch 2/5 for more details on FIP. These patches are : 1. built on top of most recently submitted open-fcoe.org patches by Rob at http://marc.info/?l=linux-scsi&m=123576089125544&w=2 2. tested with open-fcoe.org fcoe-fixes git tree which is based on Linus's 2.6.29-rc6 tree, thus should apply to scsi-misc also. --- Joe Eykholt (3): fcoe: libfcoe: fix FIP link logic fcoe: Add support for the FIP discovery and keep-alive protocol. fcoe: Add a header file defining the FIP protocol for FCoE. Vasu Dev (2): fcoe: removes sharing of fcoe_rx_list for both FCoE and FIP frames fcoe: removed kzalloc from fcoe_ctlr_parse_adv (v3) drivers/scsi/Kconfig | 11 drivers/scsi/Makefile | 1 drivers/scsi/fcoe/fcoe_sw.c | 61 ++ drivers/scsi/fcoe/libfcoe.c | 167 ++--- drivers/scsi/libfcoe/Makefile | 6 drivers/scsi/libfcoe/fcoe_ctlr.c | 1238 ++++++++++++++++++++++++++++++++++++++ include/scsi/fc/fc_fip.h | 237 +++++++ include/scsi/fcoe_ctlr.h | 105 +++ include/scsi/libfcoe.h | 24 - 9 files changed, 1716 insertions(+), 134 deletions(-) create mode 100644 drivers/scsi/libfcoe/Makefile create mode 100644 drivers/scsi/libfcoe/fcoe_ctlr.c create mode 100644 include/scsi/fc/fc_fip.h create mode 100644 include/scsi/fcoe_ctlr.h -- Vasu -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html