aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2012-06-22 02:31:04 -0400
committerJames Bottomley <JBottomley@Parallels.com>2012-07-20 03:58:51 -0400
commit4e646ddd5faf707602dcb4b491412b72180da3b3 (patch)
treebccd2437c5c9f557540152523c8791edce03a1f2 /drivers/scsi
parente7db8229964365451b8ec48e32b5558100b0a318 (diff)
[SCSI] isci: use sas eh strategy handlers
...now that the strategy handlers guarantee eh context and notify the driver of bus reset. Signed-off-by: Dan Williams <dan.j.williams@intel.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/isci/init.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/isci/init.c b/drivers/scsi/isci/init.c
index 47e28b555029..92c1d86d1fc6 100644
--- a/drivers/scsi/isci/init.c
+++ b/drivers/scsi/isci/init.c
@@ -166,6 +166,9 @@ static struct scsi_host_template isci_sht = {
166 .sg_tablesize = SG_ALL, 166 .sg_tablesize = SG_ALL,
167 .max_sectors = SCSI_DEFAULT_MAX_SECTORS, 167 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
168 .use_clustering = ENABLE_CLUSTERING, 168 .use_clustering = ENABLE_CLUSTERING,
169 .eh_abort_handler = sas_eh_abort_handler,
170 .eh_device_reset_handler = sas_eh_device_reset_handler,
171 .eh_bus_reset_handler = sas_eh_bus_reset_handler,
169 .target_destroy = sas_target_destroy, 172 .target_destroy = sas_target_destroy,
170 .ioctl = sas_ioctl, 173 .ioctl = sas_ioctl,
171 .shost_attrs = isci_host_attrs, 174 .shost_attrs = isci_host_attrs,