diff options
| author | Darrick J. Wong <[email protected]> | 2006-10-30 23:18:39 +0000 |
|---|---|---|
| committer | James Bottomley <[email protected]> | 2006-11-15 18:14:16 +0000 |
| commit | f456393e195e0aa16029985f63cd93b601a0d315 (patch) | |
| tree | dc4b9d4c0705d5fe2d94669b1a75053f52755cb7 /drivers/scsi/libsas/sas_init.c | |
| parent | [SCSI] Reduce polling in sd.c (diff) | |
| download | kernel-f456393e195e0aa16029985f63cd93b601a0d315.tar.gz kernel-f456393e195e0aa16029985f63cd93b601a0d315.zip | |
[SCSI] libsas: modify error handler to use scsi_eh_* functions
This patch adds an EH done queue to sas_ha, converts the error handling
strategy function and the sas_scsi_task_done functions in libsas to use
the scsi_eh_* commands for error'd commands, and adds checks for the
INITIATOR_ABORTED flag so that we do the right thing if a sas_task has
been aborted by the initiator.
Signed-off-by: Darrick J. Wong <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
Diffstat (limited to 'drivers/scsi/libsas/sas_init.c')
| -rw-r--r-- | drivers/scsi/libsas/sas_init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/libsas/sas_init.c b/drivers/scsi/libsas/sas_init.c index c836a237fb79..a2b479a65908 100644 --- a/drivers/scsi/libsas/sas_init.c +++ b/drivers/scsi/libsas/sas_init.c @@ -112,6 +112,8 @@ int sas_register_ha(struct sas_ha_struct *sas_ha) } } + INIT_LIST_HEAD(&sas_ha->eh_done_q); + return 0; Undo_ports: |
