public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/27] libfc, libfcoe and fcoe updates for 2.6.38
@ 2010-12-01  0:17 Robert Love
  2010-12-01  0:18 ` [PATCH 01/27] libfc: remove define of fc_seq_exch in fc_exch.c Robert Love
                   ` (27 more replies)
  0 siblings, 28 replies; 29+ messages in thread
From: Robert Love @ 2010-12-01  0:17 UTC (permalink / raw)
  To: James.Bottomley, linux-scsi

The following series contains a variety of fixes to
libfc, libfcoe and fcoe for the 2.6.38 merge window.

The "drivers/scsi/fcoe: Update WARN uses" patch was
pulled in from another series submitted to linux-scsi.

---

Hillf Danton (8):
      libfc: remove define of fc_seq_exch in fc_exch.c
      libfc: fix mem leak in fc_exch_recv_seq_resp()
      libfc: tune fc_exch_em_alloc() to be O(2)
      libfc: fix mem leak in fc_seq_assign()
      libfc: fix stats computation in fc_queuecommand()
      libfc: fix memory leakage in local port
      libfc: fix memory leakage in local port
      libfc: fix memory leakage in remote port

Joe Eykholt (8):
      libfcoe: update FIP FCF announcements
      libfcoe: move some timer code to make it reusable.
      libfcoe: fix checking of conflicting fabrics in fcoe_ctlr_select()
      libfcoe: retry rejected FLOGI to another FCF if possible
      libfcoe: add debug message for FCF destination MAC
      libfcoe: reorder FCF list to put latest advertiser first
      libfcoe: change fip_select to return new FCF
      libfc: fix statistics for FCP input/output megabytes

Joe Perches (1):
      drivers/scsi/fcoe: Update WARN uses

Robert Love (1):
      libfc: Fix incorrect locking and unlocking in FCP

Yi Zou (6):
      libfc: fix NULL pointer dereference bug in fc_fcp_pkt_release
      libfc: add print of exchange id for debugging fc_fcp
      libfc: do not fc_io_compl on fsp w/o any scsi_cmnd associated
      libfc: fix exchange being deleted when the abort itself is timed out
      libfc: the timeout for the REC itself is 2 * R_A_TOV_els
      libfc: fix fc_tm_done not freeing the allocated fsp pkt

john fastabend (3):
      libfc: incorrect scsi host byte codes returned to scsi-ml
      libfc: use rport timeout values for fcp recovery
      libfc: remove tgt_flags from fc_fcp_pkt struct


 drivers/scsi/fcoe/fcoe.c      |    4 -
 drivers/scsi/fcoe/libfcoe.c   |  300 +++++++++++++++++++++++++++++++++--------
 drivers/scsi/libfc/fc_exch.c  |   48 +++++--
 drivers/scsi/libfc/fc_fcp.c   |  147 +++++++++++++-------
 drivers/scsi/libfc/fc_libfc.h |   16 ++
 drivers/scsi/libfc/fc_lport.c |   16 ++
 drivers/scsi/libfc/fc_rport.c |    3 
 include/scsi/libfc.h          |   10 +
 include/scsi/libfcoe.h        |    8 +
 9 files changed, 422 insertions(+), 130 deletions(-)

-- 
Thanks, //Rob

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

end of thread, other threads:[~2010-12-01 19:04 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-01  0:17 [PATCH 00/27] libfc, libfcoe and fcoe updates for 2.6.38 Robert Love
2010-12-01  0:18 ` [PATCH 01/27] libfc: remove define of fc_seq_exch in fc_exch.c Robert Love
2010-12-01  0:18 ` [PATCH 02/27] libfc: fix NULL pointer dereference bug in fc_fcp_pkt_release Robert Love
2010-12-01  0:18 ` [PATCH 03/27] libfc: fix mem leak in fc_exch_recv_seq_resp() Robert Love
2010-12-01  0:18 ` [PATCH 04/27] libfc: tune fc_exch_em_alloc() to be O(2) Robert Love
2010-12-01  0:18 ` [PATCH 05/27] libfc: Fix incorrect locking and unlocking in FCP Robert Love
2010-12-01  0:18 ` [PATCH 06/27] libfc: fix mem leak in fc_seq_assign() Robert Love
2010-12-01  0:18 ` [PATCH 07/27] libfc: fix stats computation in fc_queuecommand() Robert Love
2010-12-01  0:18 ` [PATCH 08/27] libfc: incorrect scsi host byte codes returned to scsi-ml Robert Love
2010-12-01  0:18 ` [PATCH 09/27] libfc: use rport timeout values for fcp recovery Robert Love
2010-12-01  0:18 ` [PATCH 10/27] libfc: remove tgt_flags from fc_fcp_pkt struct Robert Love
2010-12-01  0:18 ` [PATCH 11/27] libfc: fix memory leakage in local port Robert Love
2010-12-01  0:18 ` [PATCH 12/27] " Robert Love
2010-12-01  0:19 ` [PATCH 13/27] libfc: fix memory leakage in remote port Robert Love
2010-12-01  0:19 ` [PATCH 14/27] drivers/scsi/fcoe: Update WARN uses Robert Love
2010-12-01  0:19 ` [PATCH 15/27] libfc: add print of exchange id for debugging fc_fcp Robert Love
2010-12-01  0:19 ` [PATCH 16/27] libfc: do not fc_io_compl on fsp w/o any scsi_cmnd associated Robert Love
2010-12-01  0:19 ` [PATCH 17/27] libfc: fix exchange being deleted when the abort itself is timed out Robert Love
2010-12-01  0:19 ` [PATCH 18/27] libfc: the timeout for the REC itself is 2 * R_A_TOV_els Robert Love
2010-12-01  0:19 ` [PATCH 19/27] libfc: fix fc_tm_done not freeing the allocated fsp pkt Robert Love
2010-12-01  0:19 ` [PATCH 20/27] libfcoe: update FIP FCF announcements Robert Love
2010-12-01  0:19 ` [PATCH 21/27] libfcoe: move some timer code to make it reusable Robert Love
2010-12-01  0:19 ` [PATCH 22/27] libfcoe: fix checking of conflicting fabrics in fcoe_ctlr_select() Robert Love
2010-12-01  0:19 ` [PATCH 23/27] libfcoe: retry rejected FLOGI to another FCF if possible Robert Love
2010-12-01  0:20 ` [PATCH 24/27] libfcoe: add debug message for FCF destination MAC Robert Love
2010-12-01  0:20 ` [PATCH 25/27] libfcoe: reorder FCF list to put latest advertiser first Robert Love
2010-12-01  0:20 ` [PATCH 26/27] libfcoe: change fip_select to return new FCF Robert Love
2010-12-01  0:20 ` [PATCH 27/27] libfc: fix statistics for FCP input/output megabytes Robert Love
2010-12-01 19:04 ` [PATCH] scsi: fix libfc sparse warnings Randy Dunlap

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