aboutsummaryrefslogtreecommitdiff
path: root/drivers/scsi/esp_scsi.c
AgeCommit message (Collapse)AuthorFilesLines
2007-09-25[SCSI] esp: fix instance numbering.David Miller1-1/+2
Because the ->unique_id is set too late, the ESP scsi host instance numbers in the kernel log during probing are wrong. Bug reported by Meelis Roos. Signed-off-by: David S. Miller <[email protected]> Signed-off-by: James Bottomley <[email protected]>
2007-07-15Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6Linus Torvalds1-17/+13
* master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6: (166 commits) [SCSI] ibmvscsi: convert to use the data buffer accessors [SCSI] dc395x: convert to use the data buffer accessors [SCSI] ncr53c8xx: convert to use the data buffer accessors [SCSI] sym53c8xx: convert to use the data buffer accessors [SCSI] ppa: coding police and printk levels [SCSI] aic7xxx_old: remove redundant GFP_ATOMIC from kmalloc [SCSI] i2o: remove redundant GFP_ATOMIC from kmalloc from device.c [SCSI] remove the dead CYBERSTORMIII_SCSI option [SCSI] don't build scsi_dma_{map,unmap} for !HAS_DMA [SCSI] Clean up scsi_add_lun a bit [SCSI] 53c700: Remove printk, which triggers because of low scsi clock on SNI RMs [SCSI] sni_53c710: Cleanup [SCSI] qla4xxx: Fix underrun/overrun conditions [SCSI] megaraid_mbox: use mutex instead of semaphore [SCSI] aacraid: add 51245, 51645 and 52245 adapters to documentation. [SCSI] qla2xxx: update version to 8.02.00-k1. [SCSI] qla2xxx: add support for NPIV [SCSI] stex: use resid for xfer len information [SCSI] Add Brownie 1200U3P to blacklist [SCSI] scsi.c: convert to use the data buffer accessors ...
2007-06-17[SCSI] esp_scsi: convert to use the data buffer accessorsFUJITA Tomonori1-7/+3
- convert to use the new accessors for the sg lists and the parameters. Signed-off-by: FUJITA Tomonori <[email protected]> Cc: David Miller <[email protected]> Signed-off-by: James Bottomley <[email protected]>
2007-06-13[SCSI] ESP: Don't forget to clear ESP_FLAG_RESETTING.Thomas Bogendoerfer1-0/+1
esp_reset_cleanup() does everything necessary except clear the flag, so we never exit resetting state. Signed-off-by: David S. Miller <[email protected]> Signed-off-by: James Bottomley <[email protected]>
2007-05-31[SCSI] esp: use shost_privChristoph Hellwig1-10/+10
Signed-off-by: Christoph Hellwig <[email protected]> Acked-by: David Miller <[email protected]> Signed-off-by: James Bottomley <[email protected]>
2007-05-07[SCSI] esp_scsi: Fix section mismatch warnings.Martin Habets1-1/+1
Signed-off-by: Martin Habets <[email protected]> Signed-off-by: David S. Miller <[email protected]>
2007-04-27[SCSI] esp_scsi.c: Fix compilation.Alexey Dobriyan1-4/+5
irqreturn.h for irqreturn_t and dma_addr_t being u128 warnings ;-) Signed-off-by: Alexey Dobriyan <[email protected]> Signed-off-by: David S. Miller <[email protected]>
2007-04-27[SCSI] SUNESP: Complete driver rewrite to version 2.0David S. Miller1-0/+2710
Major features: 1) Tagged queuing support. 2) Will properly negotiate for synchronous transfers even on devices that reject the wide negotiation message, such as CDROMs 3) Significantly lower kernel stack usage in interrupt handler path by elimination of function vector arrays, replaced by a top-level switch statement state machine. 4) Uses generic scsi infrastructure as much as possible to avoid code duplication. 5) Automatic request of sense data in response to CHECK_CONDITION 6) Portable to other platforms using ESP such as DEC and Sun3 systems. Signed-off-by: David S. Miller <[email protected]>