public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: Robert Love <robert.w.love@intel.com>
To: linux-scsi@vger.kernel.org
Subject: [PATCH 00/21] libfc, libfcoe and fcoe updates for 3.9
Date: Tue, 19 Feb 2013 11:30:31 -0800	[thread overview]
Message-ID: <20130219193031.10192.33777.stgit@fritz> (raw)

This series is mostly a resend of previously sent patches. The primary change in this series is the addition of the fcoe_sysfs "control" interfaces. Additionally there are a few fix/cleanup patches and UAPI conversions. Almost all of these patches have already been reviewed on linux-scsi.

I will compose a pull-request and send it soon, but I wanted to make sure the most recent versions of these patches were posted to linux-scsi first.

---

Al Viro (1):
      debris left by "[SCSI] libfcoe: Remove mutex_trylock/restart_syscall checks"

Bhanu Prakash Gollapudi (1):
      libfcoe: Handle CVL while waiting to select an FCF

David Howells (1):
      UAPI: (Scripted) Disintegrate include/scsi/fc

Krishna Mohan (1):
      libfc: XenServer fails to mount root filesystem.

Neerav Parikh (1):
      fcoe: Fix deadlock while deleting FCoE interface with NPIV ports

Neil Horman (1):
      fcoe: close race on link speed detection in fcoe code

Robert Love (7):
      Documentation: Add missing devices/ to devices path
      libfcoe: Save some memory and optimize name lookups
      libfcoe: Add fcoe_sysfs debug logging level
      libfcoe, fcoe, bnx2fc: Add new fcoe control interface
      fcoe: Use the fcoe_sysfs control interface
      bnx2fc: Use the fcoe_sysfs control interface
      libfc, libfcoe, fcoe: Convert debug_logging macros to pr_info

Vasu Dev (1):
      libfc: fix REC handling

Yi Zou (7):
      fcoe: prep work to start consolidate the usage of fcoe_netdev
      fcoe: add support to the get_netdev() for fcoe_interface
      libfcoe, fcoe: move fcoe_link_speed_update() to libfcoe and export it
      libfcoe, fcoe: consolidate the fcoe_ctlr_get_lesb/fcoe_get_lesb
      bnx2fc: add support to get_netdev for bnx2f_interface
      bnx2fc: use fcoe_link_speed_update() from the exported symbol in libfcoe
      bnx2fc: use fcoe_get_lesb/fcoe_ctlr_get_lesb() directly from libfcoe


 Documentation/ABI/testing/sysfs-bus-fcoe |   45 ++
 drivers/scsi/bnx2fc/bnx2fc_fcoe.c        |  256 +++++----
 drivers/scsi/fcoe/fcoe.c                 |  266 ++++++----
 drivers/scsi/fcoe/fcoe.h                 |    6 
 drivers/scsi/fcoe/fcoe_ctlr.c            |   27 +
 drivers/scsi/fcoe/fcoe_sysfs.c           |  186 +++++--
 drivers/scsi/fcoe/fcoe_transport.c       |  199 +++++++
 drivers/scsi/fcoe/libfcoe.h              |   20 -
 drivers/scsi/libfc/fc_fcp.c              |    6 
 drivers/scsi/libfc/fc_libfc.h            |   38 +
 drivers/scsi/libfc/fc_rport.c            |    2 
 include/scsi/fc/Kbuild                   |    4 
 include/scsi/fc/fc_els.h                 |  831 ------------------------------
 include/scsi/fc/fc_fs.h                  |  348 -------------
 include/scsi/fc/fc_gs.h                  |   96 ---
 include/scsi/fc/fc_ns.h                  |  208 --------
 include/scsi/fcoe_sysfs.h                |   11 
 include/scsi/libfcoe.h                   |   32 +
 include/uapi/scsi/fc/Kbuild              |    4 
 include/uapi/scsi/fc/fc_els.h            |  831 ++++++++++++++++++++++++++++++
 include/uapi/scsi/fc/fc_fs.h             |  348 +++++++++++++
 include/uapi/scsi/fc/fc_gs.h             |   96 +++
 include/uapi/scsi/fc/fc_ns.h             |  208 ++++++++
 23 files changed, 2296 insertions(+), 1772 deletions(-)
 delete mode 100644 include/scsi/fc/fc_els.h
 delete mode 100644 include/scsi/fc/fc_fs.h
 delete mode 100644 include/scsi/fc/fc_gs.h
 delete mode 100644 include/scsi/fc/fc_ns.h
 create mode 100644 include/uapi/scsi/fc/fc_els.h
 create mode 100644 include/uapi/scsi/fc/fc_fs.h
 create mode 100644 include/uapi/scsi/fc/fc_gs.h
 create mode 100644 include/uapi/scsi/fc/fc_ns.h

-- 
Thanks, //Rob

             reply	other threads:[~2013-02-19 19:30 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-19 19:30 Robert Love [this message]
2013-02-19 19:30 ` [PATCH 01/21] libfc: fix REC handling Robert Love
2013-02-19 19:30 ` [PATCH 02/21] Documentation: Add missing devices/ to devices path Robert Love
2013-02-19 19:30 ` [PATCH 03/21] libfcoe: Save some memory and optimize name lookups Robert Love
2013-02-19 19:30 ` [PATCH 04/21] libfcoe: Add fcoe_sysfs debug logging level Robert Love
2013-02-19 19:30 ` [PATCH 05/21] libfcoe, fcoe, bnx2fc: Add new fcoe control interface Robert Love
2013-02-19 19:31 ` [PATCH 06/21] fcoe: Use the fcoe_sysfs " Robert Love
2013-02-19 19:31 ` [PATCH 07/21] bnx2fc: " Robert Love
2013-02-19 19:31 ` [PATCH 08/21] libfc, libfcoe, fcoe: Convert debug_logging macros to pr_info Robert Love
2013-02-19 19:31 ` [PATCH 09/21] fcoe: prep work to start consolidate the usage of fcoe_netdev Robert Love
2013-02-19 19:31 ` [PATCH 10/21] fcoe: add support to the get_netdev() for fcoe_interface Robert Love
2013-02-19 19:31 ` [PATCH 11/21] libfcoe, fcoe: move fcoe_link_speed_update() to libfcoe and export it Robert Love
2013-02-19 19:31 ` [PATCH 12/21] libfcoe, fcoe: consolidate the fcoe_ctlr_get_lesb/fcoe_get_lesb Robert Love
2013-02-19 19:31 ` [PATCH 13/21] bnx2fc: add support to get_netdev for bnx2f_interface Robert Love
2013-02-19 19:31 ` [PATCH 14/21] bnx2fc: use fcoe_link_speed_update() from the exported symbol in libfcoe Robert Love
2013-02-19 19:31 ` [PATCH 15/21] bnx2fc: use fcoe_get_lesb/fcoe_ctlr_get_lesb() directly from libfcoe Robert Love
2013-02-19 19:31 ` [PATCH 16/21] debris left by "[SCSI] libfcoe: Remove mutex_trylock/restart_syscall checks" Robert Love
2013-02-19 19:32 ` [PATCH 17/21] UAPI: (Scripted) Disintegrate include/scsi/fc Robert Love
2013-02-19 19:32 ` [PATCH 18/21] fcoe: close race on link speed detection in fcoe code Robert Love
2013-02-19 19:32 ` [PATCH 19/21] fcoe: Fix deadlock while deleting FCoE interface with NPIV ports Robert Love
2013-02-19 19:32 ` [PATCH 20/21] libfcoe: Handle CVL while waiting to select an FCF Robert Love
2013-02-19 19:32 ` [PATCH 21/21] libfc: XenServer fails to mount root filesystem Robert Love
2013-02-19 21:01 ` [PATCH 00/21] libfc, libfcoe and fcoe updates for 3.9 Love, Robert W

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=20130219193031.10192.33777.stgit@fritz \
    --to=robert.w.love@intel.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