]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ncr5380: Call complete_cmd() for disconnected commands on bus reset
authorFinn Thain <fthain@telegraphics.com.au>
Wed, 23 Mar 2016 10:10:32 +0000 (21:10 +1100)
committerMartin K. Petersen <martin.petersen@oracle.com>
Mon, 11 Apr 2016 20:57:09 +0000 (16:57 -0400)
I'm told that some targets are liable to disconnect a REQUEST SENSE
command. Theoretically this would cause a command undergoing autosense to
be moved onto the disconnected list. The bus reset handler must call
complete_cmd() for these commands, otherwise the hostdata->sensing pointer
will not get cleared. That would cause autosense processing to stall and
a timeout or an incorrect scsi_eh_restore_cmnd() would eventually follow.

Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Reported-by: Michael Schmitz <schmitzmic@gmail.com>
Tested-by: Ondrej Zary <linux@rainbow-software.org>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/NCR5380.c

index 52e7d2b5790261d47facaa686729ddef9bcdda85..43908bbb3b23649fe383841f0a9d599c7cd8b0ae 100644 (file)
@@ -2437,7 +2437,7 @@ static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
                struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
 
                set_host_byte(cmd, DID_RESET);
-               cmd->scsi_done(cmd);
+               complete_cmd(instance, cmd);
        }
        INIT_LIST_HEAD(&hostdata->disconnected);