From: Dan Williams Date: Fri, 22 Jun 2012 06:31:04 +0000 (-0700) Subject: [SCSI] isci: use sas eh strategy handlers X-Git-Tag: v3.12-rc1~2685^2~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e646ddd5faf707602dcb4b491412b72180da3b3;p=kernel%2Fkernel-generic.git [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 Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/isci/init.c b/drivers/scsi/isci/init.c index 47e28b5..92c1d86 100644 --- a/drivers/scsi/isci/init.c +++ b/drivers/scsi/isci/init.c @@ -166,6 +166,9 @@ static struct scsi_host_template isci_sht = { .sg_tablesize = SG_ALL, .max_sectors = SCSI_DEFAULT_MAX_SECTORS, .use_clustering = ENABLE_CLUSTERING, + .eh_abort_handler = sas_eh_abort_handler, + .eh_device_reset_handler = sas_eh_device_reset_handler, + .eh_bus_reset_handler = sas_eh_bus_reset_handler, .target_destroy = sas_target_destroy, .ioctl = sas_ioctl, .shost_attrs = isci_host_attrs,