Re: [RFC: 2.6 patch] remove the broken SCSI_AMIGA7XX driver

2007-01-05 Thread Geert Uytterhoeven
On Thu, 4 Jan 2007, Adrian Bunk wrote: The SCSI_AMIGA7XX driver: - has been marked as BROKEN for more than two years and - is still marked as BROKEN. Drivers that had been marked as BROKEN for such a long time seem to be unlikely to be revived in the forseeable future. There's a fix

RE: [PATCH 5/6] fusion: bump version

2007-01-05 Thread Patrick_Boyd
Is there a reason that you have the version information in two different places instead of just concatinating the strings together? Patrick Boyd Dell Storage Software Engineer (512)728-3182 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Moore

[patch] qla1280 set residual correctly

2007-01-05 Thread Jes Sorensen
Hi, Jeremy caught a bug in the qla1280 driver where it didn't set the residual value correctly. Please apply, Jes Set residual correctly in qla1280 driver. Signed-off-by: Jeremy Higdon [EMAIL PROTECTED] Signed-off-by: Jes Sorensen [EMAIL PROTECTED] --- drivers/scsi/qla1280.c |6 -- 1

unifying the command permission for block layer SG_IO and sg

2007-01-05 Thread FUJITA Tomonori
This is the first try to unify the command permission tables for the block layer SG_IO and sg. I think that we need different default permission for each device type. This mainly focuses on SBC and MMC. After everyone agrees on the default permission, I'll extend Jens' command filters to set an

REGRESSION: 2.6.20-rc3-git4: EIO not returned to direct i/o application following disk error

2007-01-05 Thread Michael Reed
Testing using 2.6.20-rc3-git4 I observed that my direct i/o test application no longer receives an EIO when the fc transport deletes a target following a fibre channel switch port disable. With 2.6.19 EIO is returned and the application terminates. With 2.6.20, the requested read length is

[PATCH] scsi: megaraid_{mm,mbox} init fix for kdump

2007-01-05 Thread Sumant Patro
1. Changes in Initialization to fix kdump failure. Send SYNC command on loading. This command clears the pending commands in the adapter and re-initialize its internal RAID structure. Without this change, megaraid driver either panics or fails to

Re: [PATCH] scsi: megaraid_{mm,mbox} init fix for kdump

2007-01-05 Thread Randy Dunlap
On Fri, 05 Jan 2007 07:10:09 -0800 Sumant Patro wrote: Hi, --- Documentation/scsi/ChangeLog.megaraid | 16 ++ drivers/scsi/megaraid/megaraid_mbox.c | 140 +++- drivers/scsi/megaraid/megaraid_mbox.h |4 3 files changed, 130 insertions(+), 30 deletions(-) diff

RE: [PATCH] scsi: megaraid_{mm,mbox} init fix for kdump

2007-01-05 Thread Patro, Sumant
Hello Randy, At this time I am not trying to modify the function comment style of existing megaraid_mbox code. For the new function the description style is in sync with the preexisting code. So, I request for the patch to be accepted in its current submitted form. Regards,

Re: [PATCH] scsi: megaraid_{mm,mbox} init fix for kdump

2007-01-05 Thread Randy Dunlap
Patro, Sumant wrote: Hello Randy, At this time I am not trying to modify the function comment style of existing megaraid_mbox code. For the new function the description style is in sync with the preexisting code. So, I request for the patch to be accepted in its current

[2.6 patch] make seagate_st0x_detect() static

2007-01-05 Thread Adrian Bunk
seagate_st0x_detect() can become static. Signed-off-by: Adrian Bunk [EMAIL PROTECTED] --- linux-2.6.20-rc3-mm1/drivers/scsi/seagate.c.old 2007-01-05 22:53:13.0 +0100 +++ linux-2.6.20-rc3-mm1/drivers/scsi/seagate.c 2007-01-05 22:57:54.0 +0100 @@ -420,7 +420,7 @@ #define

[2.6 patch] SCSI seagate.c: remove SEAGATE_USE_ASM

2007-01-05 Thread Adrian Bunk
Using assembler code for performance in drivers might have been a good idea 15 years ago when this code was written, but with today's compilers that's unlikely to be an advantage. Besides this, it also hurts the readability. Simply use the C code that was already there as an alternative.

[patch 16/50] SCSI: add missing cdb clearing in scsi_execute()

2007-01-05 Thread Chris Wright
-stable review patch. If anyone has any objections, please let us know. -- From: Tejun Heo [EMAIL PROTECTED] Clear-garbage-after-CDB patch missed scsi_execute() and it causes some ODDs (HL-DT-ST DVD-RAM GSA-H30N) choke during SCSI scan. Note that this patch is only for -stable.

[PATCH] megaraid: fix kernel-doc

2007-01-05 Thread Randy Dunlap
From: Randy Dunlap [EMAIL PROTECTED] kernel-doc modifications: - change @param var notation to @var; - change function/description separator from ':' to '-'; - change var/description separator from '-' to ':'; - fix a few doc. typos; - don't use kernel-doc /** lead-in when the doc. block is not

Re: [PATCH] megaraid: fix kernel-doc

2007-01-05 Thread Randy Dunlap
On Fri, 5 Jan 2007 22:41:48 -0800 Randy Dunlap wrote: From: Randy Dunlap [EMAIL PROTECTED] Oh, this applies on top of today's patch from Sumant (which Andrew has put into -mm)... kernel-doc modifications: - change @param var notation to @var; - change function/description separator from