commit | 68b3aa7c9805aee9005a8ca53c5e99177961fbb9 | [log] [tgz] |
---|---|---|
author | Jeff Garzik <jgarzik@pobox.com> | Sat May 28 07:56:31 2005 -0400 |
committer | Jeff Garzik <jgarzik@pobox.com> | Fri Jun 17 12:05:10 2005 -0500 |
tree | 3f28891df0b3a1ecdfe6a98547d8f3c43b74e905 | |
parent | 94d0e7b805961c44e4dc486ffc21075084bb7175 [diff] [blame] |
[SCSI] allow sleeping in ->eh_bus_reset_handler() Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
diff --git a/drivers/scsi/a3000.c b/drivers/scsi/a3000.c index f8a89ec..92698f3 100644 --- a/drivers/scsi/a3000.c +++ b/drivers/scsi/a3000.c
@@ -208,7 +208,11 @@ static int a3000_bus_reset(Scsi_Cmnd *cmd) { /* FIXME perform bus-specific reset */ + + spin_lock_irq(cmd->device->host->host_lock); wd33c93_host_reset(cmd); + spin_unlock_irq(cmd->device->host->host_lock); + return SUCCESS; }