|
@@ -526,7 +526,7 @@ int sas_eh_device_reset_handler(struct scsi_cmnd *cmd)
|
|
|
return FAILED;
|
|
|
}
|
|
|
|
|
|
-int sas_eh_bus_reset_handler(struct scsi_cmnd *cmd)
|
|
|
+int sas_eh_target_reset_handler(struct scsi_cmnd *cmd)
|
|
|
{
|
|
|
int res;
|
|
|
struct Scsi_Host *host = cmd->device->host;
|
|
@@ -554,15 +554,15 @@ static int try_to_reset_cmd_device(struct scsi_cmnd *cmd)
|
|
|
struct Scsi_Host *shost = cmd->device->host;
|
|
|
|
|
|
if (!shost->hostt->eh_device_reset_handler)
|
|
|
- goto try_bus_reset;
|
|
|
+ goto try_target_reset;
|
|
|
|
|
|
res = shost->hostt->eh_device_reset_handler(cmd);
|
|
|
if (res == SUCCESS)
|
|
|
return res;
|
|
|
|
|
|
-try_bus_reset:
|
|
|
- if (shost->hostt->eh_bus_reset_handler)
|
|
|
- return shost->hostt->eh_bus_reset_handler(cmd);
|
|
|
+try_target_reset:
|
|
|
+ if (shost->hostt->eh_target_reset_handler)
|
|
|
+ return shost->hostt->eh_target_reset_handler(cmd);
|
|
|
|
|
|
return FAILED;
|
|
|
}
|
|
@@ -993,6 +993,6 @@ EXPORT_SYMBOL_GPL(sas_bios_param);
|
|
|
EXPORT_SYMBOL_GPL(sas_task_abort);
|
|
|
EXPORT_SYMBOL_GPL(sas_phy_reset);
|
|
|
EXPORT_SYMBOL_GPL(sas_eh_device_reset_handler);
|
|
|
-EXPORT_SYMBOL_GPL(sas_eh_bus_reset_handler);
|
|
|
+EXPORT_SYMBOL_GPL(sas_eh_target_reset_handler);
|
|
|
EXPORT_SYMBOL_GPL(sas_target_destroy);
|
|
|
EXPORT_SYMBOL_GPL(sas_ioctl);
|