scsi: acornscsi: move bus reset to host reset
authorHannes Reinecke <hare@suse.de>
Fri, 25 Aug 2017 11:57:09 +0000 (13:57 +0200)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 25 Aug 2017 21:21:11 +0000 (17:21 -0400)
The bus reset function is really a host reset, so move it to
eh_host_reset_handler.

Signed-off-by: Hannes Reinecke <hare@suse.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/arm/acornscsi.c

index 12b8829..690816f 100644 (file)
@@ -2725,23 +2725,24 @@ int acornscsi_abort(struct scsi_cmnd *SCpnt)
  * Params   : SCpnt  - command causing reset
  * Returns  : one of SCSI_RESET_ macros
  */
-int acornscsi_bus_reset(struct scsi_cmnd *SCpnt)
+int acornscsi_host_reset(struct Scsi_Host *shpnt)
 {
-       AS_Host *host = (AS_Host *)SCpnt->device->host->hostdata;
+       AS_Host *host = (AS_Host *)shpnt->hostdata;
        struct scsi_cmnd *SCptr;
     
     host->stats.resets += 1;
 
 #if (DEBUG & DEBUG_RESET)
     {
-       int asr, ssr;
+       int asr, ssr, devidx;
 
        asr = sbic_arm_read(host, SBIC_ASR);
        ssr = sbic_arm_read(host, SBIC_SSR);
 
        printk(KERN_WARNING "acornscsi_reset: ");
        print_sbic_status(asr, ssr, host->scsi.phase);
-       acornscsi_dumplog(host, SCpnt->device->id);
+       for (devidx = 0; devidx < 9; devidx ++) {
+           acornscsi_dumplog(host, devidx);
     }
 #endif
 
@@ -2884,7 +2885,7 @@ static struct scsi_host_template acornscsi_template = {
        .info                   = acornscsi_info,
        .queuecommand           = acornscsi_queuecmd,
        .eh_abort_handler       = acornscsi_abort,
-       .eh_bus_reset_handler   = acornscsi_bus_reset,
+       .eh_host_reset_handler  = acornscsi_host_reset,
        .can_queue              = 16,
        .this_id                = 7,
        .sg_tablesize           = SG_ALL,