diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-05-28 07:57:14 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-06-17 13:05:18 -0400 |
commit | df0ae2497ddefd72a87f3a3b34ff32455d7d4ae0 (patch) | |
tree | 552e02a44a21bd38db91729c85219542c2930ae2 /drivers/scsi/ips.c | |
parent | 68b3aa7c9805aee9005a8ca53c5e99177961fbb9 (diff) |
[SCSI] allow sleeping in ->eh_host_reset_handler()
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/ips.c')
-rw-r--r-- | drivers/scsi/ips.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/drivers/scsi/ips.c b/drivers/scsi/ips.c index 6572e100f7b2..6dfcb4fbccdd 100644 --- a/drivers/scsi/ips.c +++ b/drivers/scsi/ips.c | |||
@@ -873,7 +873,7 @@ ips_eh_abort(Scsi_Cmnd * SC) | |||
873 | /* */ | 873 | /* */ |
874 | /****************************************************************************/ | 874 | /****************************************************************************/ |
875 | static int | 875 | static int |
876 | ips_eh_reset(Scsi_Cmnd * SC) | 876 | __ips_eh_reset(Scsi_Cmnd * SC) |
877 | { | 877 | { |
878 | int ret; | 878 | int ret; |
879 | int i; | 879 | int i; |
@@ -1060,6 +1060,18 @@ ips_eh_reset(Scsi_Cmnd * SC) | |||
1060 | 1060 | ||
1061 | } | 1061 | } |
1062 | 1062 | ||
1063 | static int | ||
1064 | ips_eh_reset(Scsi_Cmnd * SC) | ||
1065 | { | ||
1066 | int rc; | ||
1067 | |||
1068 | spin_lock_irq(SC->device->host->host_lock); | ||
1069 | rc = __ips_eh_reset(SC); | ||
1070 | spin_unlock_irq(SC->device->host->host_lock); | ||
1071 | |||
1072 | return rc; | ||
1073 | } | ||
1074 | |||
1063 | /****************************************************************************/ | 1075 | /****************************************************************************/ |
1064 | /* */ | 1076 | /* */ |
1065 | /* Routine Name: ips_queue */ | 1077 | /* Routine Name: ips_queue */ |