Commit 3b5382c4 authored by Christoph Hellwig's avatar Christoph Hellwig

scsi: set ->scsi_done before calling scsi_dispatch_cmd

The blk-mq code path will set this to a different function, so make the
code simpler by setting it up in a legacy-request specific place.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
Reviewed-by: default avatarHannes Reinecke <hare@suse.de>
Reviewed-by: default avatarWebb Scales <webbnh@hp.com>
Acked-by: default avatarJens Axboe <axboe@kernel.dk>
Tested-by: default avatarBart Van Assche <bvanassche@acm.org>
Tested-by: default avatarRobert Elliott <elliott@hp.com>
parent d0d3bbf9
...@@ -72,8 +72,6 @@ ...@@ -72,8 +72,6 @@
#define CREATE_TRACE_POINTS #define CREATE_TRACE_POINTS
#include <trace/events/scsi.h> #include <trace/events/scsi.h>
static void scsi_done(struct scsi_cmnd *cmd);
/* /*
* Definitions and constants. * Definitions and constants.
*/ */
...@@ -693,8 +691,6 @@ int scsi_dispatch_cmd(struct scsi_cmnd *cmd) ...@@ -693,8 +691,6 @@ int scsi_dispatch_cmd(struct scsi_cmnd *cmd)
} }
trace_scsi_dispatch_cmd_start(cmd); trace_scsi_dispatch_cmd_start(cmd);
cmd->scsi_done = scsi_done;
rtn = host->hostt->queuecommand(host, cmd); rtn = host->hostt->queuecommand(host, cmd);
if (rtn) { if (rtn) {
trace_scsi_dispatch_cmd_error(cmd, rtn); trace_scsi_dispatch_cmd_error(cmd, rtn);
...@@ -708,27 +704,10 @@ int scsi_dispatch_cmd(struct scsi_cmnd *cmd) ...@@ -708,27 +704,10 @@ int scsi_dispatch_cmd(struct scsi_cmnd *cmd)
return rtn; return rtn;
done: done:
scsi_done(cmd); cmd->scsi_done(cmd);
return 0; return 0;
} }
/**
* scsi_done - Invoke completion on finished SCSI command.
* @cmd: The SCSI Command for which a low-level device driver (LLDD) gives
* ownership back to SCSI Core -- i.e. the LLDD has finished with it.
*
* Description: This function is the mid-level's (SCSI Core) interrupt routine,
* which regains ownership of the SCSI command (de facto) from a LLDD, and
* calls blk_complete_request() for further processing.
*
* This function is interrupt context safe.
*/
static void scsi_done(struct scsi_cmnd *cmd)
{
trace_scsi_dispatch_cmd_done(cmd);
blk_complete_request(cmd->request);
}
/** /**
* scsi_finish_command - cleanup and pass command back to upper layer * scsi_finish_command - cleanup and pass command back to upper layer
* @cmd: the command * @cmd: the command
......
...@@ -29,6 +29,8 @@ ...@@ -29,6 +29,8 @@
#include <scsi/scsi_eh.h> #include <scsi/scsi_eh.h>
#include <scsi/scsi_host.h> #include <scsi/scsi_host.h>
#include <trace/events/scsi.h>
#include "scsi_priv.h" #include "scsi_priv.h"
#include "scsi_logging.h" #include "scsi_logging.h"
...@@ -1454,6 +1456,23 @@ static void scsi_softirq_done(struct request *rq) ...@@ -1454,6 +1456,23 @@ static void scsi_softirq_done(struct request *rq)
} }
} }
/**
* scsi_done - Invoke completion on finished SCSI command.
* @cmd: The SCSI Command for which a low-level device driver (LLDD) gives
* ownership back to SCSI Core -- i.e. the LLDD has finished with it.
*
* Description: This function is the mid-level's (SCSI Core) interrupt routine,
* which regains ownership of the SCSI command (de facto) from a LLDD, and
* calls blk_complete_request() for further processing.
*
* This function is interrupt context safe.
*/
static void scsi_done(struct scsi_cmnd *cmd)
{
trace_scsi_dispatch_cmd_done(cmd);
blk_complete_request(cmd->request);
}
/* /*
* Function: scsi_request_fn() * Function: scsi_request_fn()
* *
...@@ -1556,6 +1575,7 @@ static void scsi_request_fn(struct request_queue *q) ...@@ -1556,6 +1575,7 @@ static void scsi_request_fn(struct request_queue *q)
/* /*
* Dispatch the command to the low-level driver. * Dispatch the command to the low-level driver.
*/ */
cmd->scsi_done = scsi_done;
rtn = scsi_dispatch_cmd(cmd); rtn = scsi_dispatch_cmd(cmd);
if (rtn) { if (rtn) {
scsi_queue_insert(cmd, rtn); scsi_queue_insert(cmd, rtn);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment