]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
scsi: libsas: remove sas_scsi_timed_out
authorChristoph Hellwig <hch@lst.de>
Mon, 30 Jan 2017 12:18:57 +0000 (13:18 +0100)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 7 Feb 2017 00:09:12 +0000 (19:09 -0500)
EH_NOT_HANDLED is the default case if no eh_timed_out method is
provided, so there is no need to supply it.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/libsas/sas_init.c
drivers/scsi/libsas/sas_internal.h
drivers/scsi/libsas/sas_scsi_host.c

index 362da44f2948eb3533cef40cb1b72da0625f1b05..15ef8e2e685c5cd094c3d0784de4aab45159e62e 100644 (file)
@@ -560,7 +560,6 @@ sas_domain_attach_transport(struct sas_domain_function_template *dft)
        i = to_sas_internal(stt);
        i->dft = dft;
        stt->create_work_queue = 1;
-       stt->eh_timed_out = sas_scsi_timed_out;
        stt->eh_strategy_handler = sas_scsi_recover_host;
 
        return stt;
index 9cf0bc260b0e78ac3c929aafc00315cbad819caa..b306b7843d999014dd6f57bd6321c3cfbe9729be 100644 (file)
@@ -64,8 +64,6 @@ void sas_unregister_phys(struct sas_ha_struct *sas_ha);
 int  sas_register_ports(struct sas_ha_struct *sas_ha);
 void sas_unregister_ports(struct sas_ha_struct *sas_ha);
 
-enum blk_eh_timer_return sas_scsi_timed_out(struct scsi_cmnd *);
-
 int  sas_init_events(struct sas_ha_struct *sas_ha);
 void sas_disable_revalidation(struct sas_ha_struct *ha);
 void sas_enable_revalidation(struct sas_ha_struct *ha);
index 519dac4e341e3d05af47d35fd2580a8a8ecc2c67..9bd55bce83afb62b4a0bb8500c8d05a65e046926 100644 (file)
@@ -803,13 +803,6 @@ void sas_scsi_recover_host(struct Scsi_Host *shost)
                    shost->host_failed, tries);
 }
 
-enum blk_eh_timer_return sas_scsi_timed_out(struct scsi_cmnd *cmd)
-{
-       scmd_dbg(cmd, "command %p timed out\n", cmd);
-
-       return BLK_EH_NOT_HANDLED;
-}
-
 int sas_ioctl(struct scsi_device *sdev, int cmd, void __user *arg)
 {
        struct domain_device *dev = sdev_to_domain_dev(sdev);