* [BK PATCH] SCSI -rc1 fixes
@ 2004-11-14 21:20 James Bottomley
2004-11-14 23:05 ` Jeff Garzik
0 siblings, 1 reply; 5+ messages in thread
From: James Bottomley @ 2004-11-14 21:20 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds; +Cc: SCSI Mailing List, Linux Kernel
This is my first set of -rc fixes for SCSI. The patch is available at
bk://linux-scsi.bkbits.net/scsi-for-linus-2.6
The short changelog is:
Adam J. Richter:
o dmx3191d.c lacked MODULE_DEVICE_TABLE()
Alan Stern:
o SCSI core: Fix refcounting error
Andrew Vasquez:
o SCSI: fix `risc_code_addr01' multiple definition
James Bottomley:
o make osst compile again after st structure changes
Jan Dittmer:
o aic7xxx remove warnings
Jens Axboe:
o fix SCSI bounce limit
Kai Mäkisara:
o SCSI tape: remove remaining typedefs
Matthew Wilcox:
o sym2 2.1.18m
Maximilian Attems:
o scsi/scsi_lib: replace schedule_timeout() with
o scsi/53c700: replace schedule_timeout() with
Randy Dunlap:
o qla1280: driver_setup not __initdata
Sergey S. Kostyliov:
o Add megaraid PCI IDs
And the diffstat
Documentation/scsi/sym53c8xx_2.txt | 360 +++++++++++-------------------
drivers/scsi/53c700.c | 2
drivers/scsi/aic7xxx/aic7xxx_osm.c | 4
drivers/scsi/dmx3191d.c | 1
drivers/scsi/megaraid/megaraid_mbox.c | 6
drivers/scsi/osst.c | 55 ++--
drivers/scsi/osst.h | 4
drivers/scsi/qla1280.c | 2
drivers/scsi/qlogicfc_asm.c | 10
drivers/scsi/scsi_lib.c | 18 -
drivers/scsi/scsi_scan.c | 3
drivers/scsi/scsi_sysfs.c | 2
drivers/scsi/st.c | 221 +++++++++---------
drivers/scsi/st.h | 20 -
drivers/scsi/sym53c8xx_2/sym53c8xx.h | 47 ----
drivers/scsi/sym53c8xx_2/sym_defs.h | 100 ++++----
drivers/scsi/sym53c8xx_2/sym_glue.c | 396 +++++++++++++---------------------
drivers/scsi/sym53c8xx_2/sym_glue.h | 3
drivers/scsi/sym53c8xx_2/sym_hipd.c | 100 +++-----
drivers/scsi/sym53c8xx_2/sym_misc.c | 4
20 files changed, 569 insertions(+), 789 deletions(-)
James
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [BK PATCH] SCSI -rc1 fixes
2004-11-14 21:20 [BK PATCH] SCSI -rc1 fixes James Bottomley
@ 2004-11-14 23:05 ` Jeff Garzik
2004-11-14 23:09 ` James Bottomley
0 siblings, 1 reply; 5+ messages in thread
From: Jeff Garzik @ 2004-11-14 23:05 UTC (permalink / raw)
To: James Bottomley
Cc: Andrew Morton, Linus Torvalds, SCSI Mailing List, Linux Kernel
James Bottomley wrote:
> This is my first set of -rc fixes for SCSI. The patch is available at
thankyou thankyou :)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [BK PATCH] SCSI -rc1 fixes
2004-11-14 23:05 ` Jeff Garzik
@ 2004-11-14 23:09 ` James Bottomley
2004-11-14 23:54 ` Matthias Andree
0 siblings, 1 reply; 5+ messages in thread
From: James Bottomley @ 2004-11-14 23:09 UTC (permalink / raw)
To: Jeff Garzik
Cc: Andrew Morton, Linus Torvalds, SCSI Mailing List, Linux Kernel
On Sun, 2004-11-14 at 17:05, Jeff Garzik wrote:
> thankyou thankyou :)
I've only been away for *two* weeks .... that's not a very long time
compared with a linux kernel -rc cycle ...
James
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [BK PATCH] SCSI -rc1 fixes
2004-11-14 23:09 ` James Bottomley
@ 2004-11-14 23:54 ` Matthias Andree
2004-11-15 0:04 ` James Bottomley
0 siblings, 1 reply; 5+ messages in thread
From: Matthias Andree @ 2004-11-14 23:54 UTC (permalink / raw)
To: James Bottomley
Cc: Jeff Garzik, Andrew Morton, Linus Torvalds, SCSI Mailing List,
Linux Kernel
James Bottomley <James.Bottomley@SteelEye.com> writes:
> On Sun, 2004-11-14 at 17:05, Jeff Garzik wrote:
>> thankyou thankyou :)
>
> I've only been away for *two* weeks .... that's not a very long time
> compared with a linux kernel -rc cycle ...
With like 2,400 change sets since v2.6.9...
Still wondering about SuSE's hwscan issue. Has someone managed to figure
if it uses some ioctl that chokes the sym2 driver or if it hacks the
hardware?
--
Matthias Andree
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [BK PATCH] SCSI -rc1 fixes
2004-11-14 23:54 ` Matthias Andree
@ 2004-11-15 0:04 ` James Bottomley
0 siblings, 0 replies; 5+ messages in thread
From: James Bottomley @ 2004-11-15 0:04 UTC (permalink / raw)
To: Matthias Andree
Cc: Jeff Garzik, Andrew Morton, Linus Torvalds, SCSI Mailing List,
Linux Kernel
On Sun, 2004-11-14 at 17:54, Matthias Andree wrote:
> Still wondering about SuSE's hwscan issue. Has someone managed to figure
> if it uses some ioctl that chokes the sym2 driver or if it hacks the
> hardware?
Well, I think we're stuck on that one. SUSE doesn't seem willing to
debug hwscan enough to give a coherent description of the problem or a
non hwscan test case and no-one else wants to take hwscan apart to find
out exactly what it is doing.
James
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2004-11-15 0:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-14 21:20 [BK PATCH] SCSI -rc1 fixes James Bottomley
2004-11-14 23:05 ` Jeff Garzik
2004-11-14 23:09 ` James Bottomley
2004-11-14 23:54 ` Matthias Andree
2004-11-15 0:04 ` James Bottomley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox