* [GIT PATCH] SCSI bug fixes for 2.6.25-rc4
@ 2008-03-05 22:26 James Bottomley
2008-03-06 0:35 ` Matthew Wilcox
0 siblings, 1 reply; 3+ messages in thread
From: James Bottomley @ 2008-03-05 22:26 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds; +Cc: linux-scsi, linux-kernel
Apart from the usual crop of bug fixes, it is hoped that both gdth
(under all circumstances) and aic94xx (under protocol errors) now work
after this.
The patch is available from:
master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
The short changelog is:
Andrew Vasquez (4):
qla2xxx: Update version number to 8.02.00-k9.
qla2xxx: Correct usage of inconsistent timeout values while issuing ELS co
qla2xxx: Correct discrepancies during OVERRUN handling on FWI2-capable car
qla2xxx: Correct needless clean-up resets during shutdown.
Boaz Harrosh (2):
gdth: fix to internal commands execution
gdth: bugfix for the at-exit problems
FUJITA Tomonori (6):
tgt: fix build errors when dprintk is defined
tgt: set the data length properly
tgt: stop zero'ing scsi_cmnd
ibmvstgt: set up scsi_host properly before __scsi_alloc_queue
ps3rom: disable clustering
ps3rom: fix wrong resid calculation bug
James Bottomley (6):
aic94xx: fix TMF ascb handling to prevent sequencer panic
libsas: misc fixes to the eh path
libsas: use the supplied address for SATA devices rather than changing it
Andrew Vasquez (4):
qla2xxx: Update version number to 8.02.00-k9.
qla2xxx: Correct usage of inconsistent timeout values while issuing ELS co
qla2xxx: Correct discrepancies during OVERRUN handling on FWI2-capable car
qla2xxx: Correct needless clean-up resets during shutdown.
Boaz Harrosh (2):
gdth: fix to internal commands execution
gdth: bugfix for the at-exit problems
FUJITA Tomonori (6):
tgt: fix build errors when dprintk is defined
tgt: set the data length properly
tgt: stop zero'ing scsi_cmnd
ibmvstgt: set up scsi_host properly before __scsi_alloc_queue
ps3rom: disable clustering
ps3rom: fix wrong resid calculation bug
James Bottomley (6):
aic94xx: fix TMF ascb handling to prevent sequencer panic
libsas: misc fixes to the eh path
libsas: use the supplied address for SATA devices rather than changing it
aic94xx: plumb in I_T_nexus_reset task management function
libsas: export sas_find_local_phy function
mvsas: remove execute permission from file
Ke Wei (1):
mvsas: fix phy sas address
Krzysztof Oledzki (1):
mpt fusion: don't oops if NumPhys==0
Mike Christie (4):
iscsi class: regression - fix races with state manipulation and blocking/u
qla4xxx: regression - add start scan callout
qla4xxx: fix host reset dpc race
iscsi regression: check for zero max session cmds
Nick Cheng (1):
arcmsr: update version and changelog
Randy Dunlap (2):
docbook: fix fusion source files
docbook: fix scsi source file
And the diffstat:
Documentation/scsi/ChangeLog.arcmsr | 6
drivers/message/fusion/mptbase.c | 25 +-
drivers/message/fusion/mptsas.c | 5
drivers/message/fusion/mptscsih.c | 14 -
drivers/scsi/aic94xx/aic94xx.h | 1
drivers/scsi/aic94xx/aic94xx_hwi.h | 3
drivers/scsi/aic94xx/aic94xx_init.c | 2
drivers/scsi/aic94xx/aic94xx_task.c | 4
drivers/scsi/aic94xx/aic94xx_tmf.c | 304 ++++++++++++++++++++++--------------
drivers/scsi/arcmsr/arcmsr.h | 2
drivers/scsi/gdth.c | 112 ++++---------
drivers/scsi/gdth.h | 1
drivers/scsi/ibmvscsi/ibmvstgt.c | 9 -
drivers/scsi/libiscsi.c | 4
drivers/scsi/libsas/sas_ata.c | 39 ----
drivers/scsi/libsas/sas_port.c | 11 -
drivers/scsi/libsas/sas_scsi_host.c | 34 +---
drivers/scsi/mvsas.c | 11 -
drivers/scsi/ps3rom.c | 4
drivers/scsi/qla2xxx/qla_gs.c | 10 -
drivers/scsi/qla2xxx/qla_init.c | 11 -
drivers/scsi/qla2xxx/qla_isr.c | 5
drivers/scsi/qla2xxx/qla_mbx.c | 2
drivers/scsi/qla2xxx/qla_version.h | 2
drivers/scsi/qla4xxx/ql4_init.c | 2
drivers/scsi/qla4xxx/ql4_os.c | 39 ++--
drivers/scsi/scsi_scan.c | 3
drivers/scsi/scsi_tgt_lib.c | 6
drivers/scsi/scsi_transport_iscsi.c | 78 +++++----
include/scsi/libsas.h | 1
include/scsi/scsi_transport_iscsi.h | 2
31 files changed, 403 insertions(+), 349 deletions(-)
James
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [GIT PATCH] SCSI bug fixes for 2.6.25-rc4
2008-03-05 22:26 [GIT PATCH] SCSI bug fixes for 2.6.25-rc4 James Bottomley
@ 2008-03-06 0:35 ` Matthew Wilcox
2008-03-06 0:39 ` James Bottomley
0 siblings, 1 reply; 3+ messages in thread
From: Matthew Wilcox @ 2008-03-06 0:35 UTC (permalink / raw)
To: James Bottomley; +Cc: Andrew Morton, Linus Torvalds, linux-scsi, linux-kernel
On Wed, Mar 05, 2008 at 04:26:17PM -0600, James Bottomley wrote:
> Apart from the usual crop of bug fixes, it is hoped that both gdth
> (under all circumstances) and aic94xx (under protocol errors) now work
> after this.
>
> The patch is available from:
>
> master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
>
> The short changelog is:
James, you've overlooked
http://marc.info/?l=linux-scsi&m=119161490104667&w=2 again. I last sent
it to you on Feb 25th
--
Intel are signing my paycheques ... these opinions are still mine
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours. We can't possibly take such
a retrograde step."
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [GIT PATCH] SCSI bug fixes for 2.6.25-rc4
2008-03-06 0:35 ` Matthew Wilcox
@ 2008-03-06 0:39 ` James Bottomley
0 siblings, 0 replies; 3+ messages in thread
From: James Bottomley @ 2008-03-06 0:39 UTC (permalink / raw)
To: Matthew Wilcox; +Cc: Andrew Morton, Linus Torvalds, linux-scsi, linux-kernel
On Wed, 2008-03-05 at 17:35 -0700, Matthew Wilcox wrote:
> On Wed, Mar 05, 2008 at 04:26:17PM -0600, James Bottomley wrote:
> > Apart from the usual crop of bug fixes, it is hoped that both gdth
> > (under all circumstances) and aic94xx (under protocol errors) now work
> > after this.
> >
> > The patch is available from:
> >
> > master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
> >
> > The short changelog is:
>
> James, you've overlooked
> http://marc.info/?l=linux-scsi&m=119161490104667&w=2 again. I last sent
> it to you on Feb 25th
Sorry ... the week of the 25th was a bit of a busy one. I've tracked it
down marked it for addition.
James
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-03-06 0:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-05 22:26 [GIT PATCH] SCSI bug fixes for 2.6.25-rc4 James Bottomley
2008-03-06 0:35 ` Matthew Wilcox
2008-03-06 0:39 ` James Bottomley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox