public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PATCH] final SCSI fixes for 2.6.15-rc5
@ 2005-12-15  0:01 James Bottomley
  2005-12-15  0:20 ` Michael Reed
  2005-12-15 10:10 ` Miquel van Smoorenburg
  0 siblings, 2 replies; 5+ messages in thread
From: James Bottomley @ 2005-12-15  0:01 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton; +Cc: Linux Kernel, SCSI Mailing List

These should (hopefully) represent the last few urgent bug fixes that
have shown up.  The fixes are available here:

master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git

The short changelog is:

Andrew Vasquez:
  o qla2xxx: Correct short-WRITE status handling
  o qla2xxx: Correct mis-handling of AENs

Brian King:
  o fix double free of scsi request queue

Dave Boutcher:
  o ibmvscsi kexec fix

James Bottomley:
  o Consolidate REQ_BLOCK_PC handling path (fix ipod panic)

Jens Axboe:
  o fix panic when ejecting ieee1394 ipod

Mark Lord:
  o Fix incorrect pointer in megaraid.c MODE_SENSE emulation

Matthew Wilcox:
  o Negotiate correctly with async-only devices

Michael Reed:
  o fix OOPS due to clearing eh_action prior to aborting eh command

And the diffstat:

 drivers/scsi/ibmvscsi/ibmvscsi.h      |    2 +-
 drivers/scsi/ibmvscsi/iseries_vscsi.c |    3 ++-
 drivers/scsi/ibmvscsi/rpa_vscsi.c     |    8 +++++++-
 drivers/scsi/megaraid.c               |    2 +-
 drivers/scsi/qla2xxx/qla_def.h        |   10 +---------
 drivers/scsi/qla2xxx/qla_init.c       |    6 +++---
 drivers/scsi/qla2xxx/qla_isr.c        |   15 +++++++++++++++
 drivers/scsi/scsi_error.c             |    7 ++++++-
 drivers/scsi/scsi_lib.c               |   33 +++++++++++++++++++++------------
 drivers/scsi/scsi_scan.c              |    1 -
 drivers/scsi/sd.c                     |   16 +---------------
 drivers/scsi/sr.c                     |   20 +++-----------------
 drivers/scsi/st.c                     |   19 +------------------
 drivers/scsi/sym53c8xx_2/sym_hipd.c   |    4 ++--
 include/scsi/scsi_cmnd.h              |    1 +
 15 files changed, 65 insertions(+), 82 deletions(-)

James



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

* Re: [GIT PATCH] final SCSI fixes for 2.6.15-rc5
  2005-12-15  0:01 [GIT PATCH] final SCSI fixes for 2.6.15-rc5 James Bottomley
@ 2005-12-15  0:20 ` Michael Reed
  2005-12-15  0:50   ` Andrew Morton
  2005-12-15 10:10 ` Miquel van Smoorenburg
  1 sibling, 1 reply; 5+ messages in thread
From: Michael Reed @ 2005-12-15  0:20 UTC (permalink / raw)
  To: James Bottomley
  Cc: Linus Torvalds, Andrew Morton, Linux Kernel, SCSI Mailing List

If possible, a comment on my previous email which identified two
other issues with SCSI would be appreciated before 2.6.15 goes
final.

Thanks,
 Mike


> "Current Issues with 2.6.15-rc5" sent today:

> Hello Everyone,
> 
> I'm concerned about the stability of the fibre channel infrastructure
> in 2.6.15-rc.  There are current issues which I see effecting our (SGI's)
> customers' satisfaction.  I feel that these issues must be addressed
> prior to the release of 2.6.15.
> 
> 1 - fc transport change gets really noisy if targets disappear from
>     the fabric due to recursion on the workqueue.  I've seen recursion
>     depths > 40 and it's only really limited by the number of targets
>     on a fibre channel fabric.  It's unknown (to me) what side effects
>     this recursion might have if the number of targets is in the
>     hundreds, which is not uncommon for our customers.  James Smart
>     is aware of this and is working on a solution.
>     See my posting of 12/2/2005 and replies.
>     "2.6.15-rc4 error messages with multiple qla2300 hba ports on fabric".
> 
> 2 - qlogic fibre channel driver no longer properly handles targets coming
>     and going.  There is a race condition within the driver which can
>     result in targets being deleted yet they are present and accounted for.
>     This is a show stopper for SGI's customers.  We have to have reliable
>     target [re-]discovery.  Andrew Vasquez is aware of this issue.
>     See my posting on 12/5/2005.  "qla2x00 driver serialization issue".
> 
> In a private email, Andrew wrote:
>> > Yes, I was afraid of something like this happening (due to qla2xxx
>> > detections of ports being dropped from an interrupt context)...  Codes
>> > in qla_rscn.c already queue-up rport_adds() via the standard
>> > kernel-workqueue:
>> > 
>> > 	qla_init.c:     INIT_WORK(&fcport->rport_add_work, qla2x00_rport_add, fcport);
>> > 
>> > 	qla_rscn.c:     schedule_work(&fcport->rport_add_work);
>> > 
>> > With the additions though, I'm wondering if adding a special
>> > single-cpu qla2xxx-rport workqueue would make sense (at least we could
>> > enforce serialization).
> 
> 
> What can be done to assure fc stability in the 2.6.15 release?  It appears
> that the revision of the fc-transport from 2.6.14 has caused some
> difficulty for a current driver, and potentially the entire system.  Is
> it ready for prime time?
> 
> Mike Reed
> 


James Bottomley wrote:
> These should (hopefully) represent the last few urgent bug fixes that
> have shown up.  The fixes are available here:
> 
> master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
> 
> The short changelog is:
> 
> Andrew Vasquez:
>   o qla2xxx: Correct short-WRITE status handling
>   o qla2xxx: Correct mis-handling of AENs
> 
> Brian King:
>   o fix double free of scsi request queue
> 
> Dave Boutcher:
>   o ibmvscsi kexec fix
> 
> James Bottomley:
>   o Consolidate REQ_BLOCK_PC handling path (fix ipod panic)
> 
> Jens Axboe:
>   o fix panic when ejecting ieee1394 ipod
> 
> Mark Lord:
>   o Fix incorrect pointer in megaraid.c MODE_SENSE emulation
> 
> Matthew Wilcox:
>   o Negotiate correctly with async-only devices
> 
> Michael Reed:
>   o fix OOPS due to clearing eh_action prior to aborting eh command
> 
> And the diffstat:
> 
>  drivers/scsi/ibmvscsi/ibmvscsi.h      |    2 +-
>  drivers/scsi/ibmvscsi/iseries_vscsi.c |    3 ++-
>  drivers/scsi/ibmvscsi/rpa_vscsi.c     |    8 +++++++-
>  drivers/scsi/megaraid.c               |    2 +-
>  drivers/scsi/qla2xxx/qla_def.h        |   10 +---------
>  drivers/scsi/qla2xxx/qla_init.c       |    6 +++---
>  drivers/scsi/qla2xxx/qla_isr.c        |   15 +++++++++++++++
>  drivers/scsi/scsi_error.c             |    7 ++++++-
>  drivers/scsi/scsi_lib.c               |   33 +++++++++++++++++++++------------
>  drivers/scsi/scsi_scan.c              |    1 -
>  drivers/scsi/sd.c                     |   16 +---------------
>  drivers/scsi/sr.c                     |   20 +++-----------------
>  drivers/scsi/st.c                     |   19 +------------------
>  drivers/scsi/sym53c8xx_2/sym_hipd.c   |    4 ++--
>  include/scsi/scsi_cmnd.h              |    1 +
>  15 files changed, 65 insertions(+), 82 deletions(-)
> 
> James
> 
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 

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

* Re: [GIT PATCH] final SCSI fixes for 2.6.15-rc5
  2005-12-15  0:20 ` Michael Reed
@ 2005-12-15  0:50   ` Andrew Morton
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Morton @ 2005-12-15  0:50 UTC (permalink / raw)
  To: Michael Reed; +Cc: James.Bottomley, torvalds, linux-kernel, linux-scsi

Michael Reed <mdr@sgi.com> wrote:
>
> If possible, a comment on my previous email which identified two
> other issues with SCSI would be appreciated before 2.6.15 goes
> final.

Just so nobody else has to go hunting, here:

	http://marc.theaimsgroup.com/?l=linux-scsi&m=113458339109319&w=2

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

* Re: [GIT PATCH] final SCSI fixes for 2.6.15-rc5
  2005-12-15  0:01 [GIT PATCH] final SCSI fixes for 2.6.15-rc5 James Bottomley
  2005-12-15  0:20 ` Michael Reed
@ 2005-12-15 10:10 ` Miquel van Smoorenburg
  1 sibling, 0 replies; 5+ messages in thread
From: Miquel van Smoorenburg @ 2005-12-15 10:10 UTC (permalink / raw)
  To: linux-scsi, linux-kernel

In article <1134604909.11150.2.camel@mulgrave>,
James Bottomley  <James.Bottomley@SteelEye.com> wrote:
>These should (hopefully) represent the last few urgent bug fixes that
>have shown up.  The fixes are available here:
>
>master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git

While not technically a SCSI driver, dpt_i2o lives in drivers/scsi
and there is a critical fix in the -mm tree that needs to go
into 2.6.15:

dpt_i2o-fix-for-deadlock-condition.patch

I've experienced several hard lockups in dpt_i2o and I have reports
of other people that have the same problem - they are solved with
this patch. It's a pure bugfix, in 2.6.13 the scsi error recovery
api was changed wrt locking and dpt_i2o only got partially updated.

It probably needs to go into 2.6.14.stable too..

Mike.

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

* RE: [GIT PATCH] final SCSI fixes for 2.6.15-rc5
@ 2005-12-15 14:58 James.Smart
  0 siblings, 0 replies; 5+ messages in thread
From: James.Smart @ 2005-12-15 14:58 UTC (permalink / raw)
  To: mdr, James.Bottomley; +Cc: torvalds, akpm, linux-kernel, linux-scsi

> > 1 - fc transport change gets really noisy if targets disappear from
> >     the fabric due to recursion on the workqueue.  I've 
> seen recursion
> >     depths > 40 and it's only really limited by the number 
> of targets
> >     on a fibre channel fabric.  It's unknown (to me) what 
> side effects
> >     this recursion might have if the number of targets is in the
> >     hundreds, which is not uncommon for our customers.  James Smart
> >     is aware of this and is working on a solution.
> >     See my posting of 12/2/2005 and replies.
> >     "2.6.15-rc4 error messages with multiple qla2300 hba 
> ports on fabric".


The patch I just posted to linux-scsi fixes this issue.

-- james s

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

end of thread, other threads:[~2005-12-15 14:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-15  0:01 [GIT PATCH] final SCSI fixes for 2.6.15-rc5 James Bottomley
2005-12-15  0:20 ` Michael Reed
2005-12-15  0:50   ` Andrew Morton
2005-12-15 10:10 ` Miquel van Smoorenburg
  -- strict thread matches above, loose matches on Subject: below --
2005-12-15 14:58 James.Smart

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