public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/24] libfc and fcoe fixes for 2.6.29-rc
@ 2009-02-27 18:54 Robert Love
  2009-02-27 18:54 ` [PATCH 01/24] libfc: Pass lport in exch_mgr_reset Robert Love
                   ` (23 more replies)
  0 siblings, 24 replies; 25+ messages in thread
From: Robert Love @ 2009-02-27 18:54 UTC (permalink / raw)
  To: james.bottomley, linux-scsi

The following series implements fixes for Open-FCoE (libfc and fcoe).
All of these patches had been sent to linux-scsi previously, with the
exception of the last 6 patches, which are new.

Of the last 6 patches one is a patch mailed to linux-scsi, not from
Open-FCoE.org, that has not been applied yet. That patch is-

   Roel Kluin -  fcoe: fix kfree(skb)

Also, the very last patch converts the FCoE Rx threads to a nice value
of -20. I sought advice on linux-scsi to determine a good value for
these threads, but didn't get feedback. Since other FC driver threads
use -20, this is the value I chose. If this is not a good starting
value, then please do not apply the patch, but I would appreciate
feedback as to a better value.

This patch set is based on Linus' 2.6.29-rc6 tree. I chose this tree
becuase it is more current than rc-fixes. If a rebase and resend is
let me know.

---

Abhijeet Joglekar (2):
      libfc: when rport goes away (re-plogi), clean up exchanges to/from rport
      libfc: Pass lport in exch_mgr_reset

Chris Leech (2):
      fcoe: fix handling of pending queue, prevent out of order frames (v3)
      libfc: rport retry on LS_RJT from certain ELS

Robert Love (11):
      fcoe: Change fcoe receive thread nice value from 19 (lowest priority) to -20
      fcoe: Correct fcoe_transports initialization vs. registration
      fcoe: Use setup_timer() and mod_timer()
      libfc, fcoe: Remove unnecessary cast by removing inline wrapper
      libfc, fcoe: Cleanup function formatting and minor typos
      libfc, fcoe: Fix kerneldoc comments
      libfc: Cleanup libfc_function_template comments
      libfc: check for err when recv and state is incorrect
      libfc: rename rp to rdata in fc_disc_new_target()
      libfc: correct RPORT_TO_PRIV usage
      libfc: Don't violate transport template for rogue port creation

Roel Kluin (1):
      fcoe: fix kfree(skb)

Steve Ma (1):
      libfc: exch mgr is freed while lport still retrying sequences

Vasu Dev (5):
      fcoe: Out of order tx frames was causing several check condition SCSI status
      libfc: fixed a read IO data integrity issue when a IO data frame lost
      libfc, fcoe: fixed locking issues with lport->lp_mutex around lport->link_status
      libfc: fixed a soft lockup issue in fc_exch_recv_abts
      libfc: handle RRQ exch timeout

Yi Zou (2):
      fcoe: ETH_P_8021Q is already in if_ether and fcoe is not using it anyway
      libfc: do not change the fh_rx_id of a recevied frame


 drivers/scsi/fcoe/fc_transport_fcoe.c |   91 +++++----
 drivers/scsi/fcoe/fcoe_sw.c           |   56 +++---
 drivers/scsi/fcoe/libfcoe.c           |  318 ++++++++++++++-------------------
 drivers/scsi/libfc/fc_disc.c          |   63 +++----
 drivers/scsi/libfc/fc_exch.c          |   32 +--
 drivers/scsi/libfc/fc_fcp.c           |   56 +++---
 drivers/scsi/libfc/fc_lport.c         |  173 ++++++++----------
 drivers/scsi/libfc/fc_rport.c         |  197 ++++++++++++--------
 include/scsi/fc/fc_fcoe.h             |    4 
 include/scsi/fc/fc_fs.h               |    5 +
 include/scsi/libfc.h                  |  138 ++++++++------
 include/scsi/libfcoe.h                |    9 -
 12 files changed, 551 insertions(+), 591 deletions(-)

-- 
//Rob

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

end of thread, other threads:[~2009-02-27 18:56 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-27 18:54 [PATCH 00/24] libfc and fcoe fixes for 2.6.29-rc Robert Love
2009-02-27 18:54 ` [PATCH 01/24] libfc: Pass lport in exch_mgr_reset Robert Love
2009-02-27 18:54 ` [PATCH 02/24] libfc: when rport goes away (re-plogi), clean up exchanges to/from rport Robert Love
2009-02-27 18:54 ` [PATCH 03/24] libfc: handle RRQ exch timeout Robert Love
2009-02-27 18:54 ` [PATCH 04/24] libfc: fixed a soft lockup issue in fc_exch_recv_abts Robert Love
2009-02-27 18:54 ` [PATCH 05/24] libfc, fcoe: fixed locking issues with lport->lp_mutex around lport->link_status Robert Love
2009-02-27 18:55 ` [PATCH 06/24] libfc: rport retry on LS_RJT from certain ELS Robert Love
2009-02-27 18:55 ` [PATCH 07/24] libfc: fixed a read IO data integrity issue when a IO data frame lost Robert Love
2009-02-27 18:55 ` [PATCH 08/24] libfc: exch mgr is freed while lport still retrying sequences Robert Love
2009-02-27 18:55 ` [PATCH 09/24] libfc: Don't violate transport template for rogue port creation Robert Love
2009-02-27 18:55 ` [PATCH 10/24] libfc: correct RPORT_TO_PRIV usage Robert Love
2009-02-27 18:55 ` [PATCH 11/24] libfc: rename rp to rdata in fc_disc_new_target() Robert Love
2009-02-27 18:55 ` [PATCH 12/24] libfc: check for err when recv and state is incorrect Robert Love
2009-02-27 18:55 ` [PATCH 13/24] libfc: Cleanup libfc_function_template comments Robert Love
2009-02-27 18:55 ` [PATCH 14/24] libfc, fcoe: Fix kerneldoc comments Robert Love
2009-02-27 18:55 ` [PATCH 15/24] libfc, fcoe: Cleanup function formatting and minor typos Robert Love
2009-02-27 18:55 ` [PATCH 16/24] libfc, fcoe: Remove unnecessary cast by removing inline wrapper Robert Love
2009-02-27 18:56 ` [PATCH 17/24] fcoe: Use setup_timer() and mod_timer() Robert Love
2009-02-27 18:56 ` [PATCH 18/24] fcoe: Correct fcoe_transports initialization vs. registration Robert Love
2009-02-27 18:56 ` [PATCH 19/24] libfc: do not change the fh_rx_id of a recevied frame Robert Love
2009-02-27 18:56 ` [PATCH 20/24] fcoe: ETH_P_8021Q is already in if_ether and fcoe is not using it anyway Robert Love
2009-02-27 18:56 ` [PATCH 21/24] fcoe: fix kfree(skb) Robert Love
2009-02-27 18:56 ` [PATCH 22/24] fcoe: Out of order tx frames was causing several check condition SCSI status Robert Love
2009-02-27 18:56 ` [PATCH 23/24] fcoe: fix handling of pending queue, prevent out of order frames (v3) Robert Love
2009-02-27 18:56 ` [PATCH 24/24] fcoe: Change fcoe receive thread nice value from 19 (lowest priority) to -20 Robert Love

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