diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-07 20:30:44 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-07 20:30:44 -0500 |
commit | c8b6de16d9434405e5832b8772e4f986ddd5118e (patch) | |
tree | 03d5d92be22e83778e3cf1367f8b6847eb953eb6 /drivers/scsi/scsi.c | |
parent | a6a852e93705121e2b90bd41ad50e85a508699aa (diff) | |
parent | 8e31e607ea050c0df1483d8b6cdd5b1395c03cbe (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6: (48 commits)
[SCSI] aacraid: do not set valid bit in sense information
[SCSI] ses: add new Enclosure ULD
[SCSI] enclosure: add support for enclosure services
[SCSI] sr: fix test unit ready responses
[SCSI] u14-34f: fix data direction bug
[SCSI] aacraid: pci_set_dma_max_seg_size opened up for late model controllers
[SCSI] fix BUG when sum(scatterlist) > bufflen
[SCSI] arcmsr: updates (1.20.00.15)
[SCSI] advansys: make 3 functions static
[SCSI] Small cleanups for scsi_host.h
[SCSI] dc395x: fix uninitialized var warning
[SCSI] NCR53C9x: remove driver
[SCSI] remove m68k NCR53C9x based drivers
[SCSI] dec_esp: Remove driver
[SCSI] kernel-doc: fix scsi docbook
[SCSI] update my email address
[SCSI] add protocol definitions
[SCSI] sd: handle bad lba in sense information
[SCSI] qla2xxx: Update version number to 8.02.00-k8.
[SCSI] qla2xxx: Correct issue where incorrect init-fw mailbox command was used on non-NPIV capable ISPs.
...
Diffstat (limited to 'drivers/scsi/scsi.c')
-rw-r--r-- | drivers/scsi/scsi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index b35d19472caa..fecba05b4e77 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c | |||
@@ -969,9 +969,10 @@ void starget_for_each_device(struct scsi_target *starget, void *data, | |||
969 | EXPORT_SYMBOL(starget_for_each_device); | 969 | EXPORT_SYMBOL(starget_for_each_device); |
970 | 970 | ||
971 | /** | 971 | /** |
972 | * __starget_for_each_device - helper to walk all devices of a target | 972 | * __starget_for_each_device - helper to walk all devices of a target (UNLOCKED) |
973 | * (UNLOCKED) | ||
974 | * @starget: target whose devices we want to iterate over. | 973 | * @starget: target whose devices we want to iterate over. |
974 | * @data: parameter for callback @fn() | ||
975 | * @fn: callback function that is invoked for each device | ||
975 | * | 976 | * |
976 | * This traverses over each device of @starget. It does _not_ | 977 | * This traverses over each device of @starget. It does _not_ |
977 | * take a reference on the scsi_device, so the whole loop must be | 978 | * take a reference on the scsi_device, so the whole loop must be |