From: Webb Scales <webbnh@hp.com>
To: Christoph Hellwig <hch@lst.de>,
James Bottomley <James.Bottomley@HansenPartnership.com>,
linux-scsi@vger.kernel.org
Subject: Re: [PATCH 01/14] scsi: add scsi_setup_cmnd helper
Date: Tue, 22 Jul 2014 13:20:30 -0400 [thread overview]
Message-ID: <53CE9D5E.3000607@hp.com> (raw)
In-Reply-To: <1405678393-11497-2-git-send-email-hch@lst.de>
On 7/18/14 6:13 AM, Christoph Hellwig wrote:
> Factor out command setup code that will be shared with the blk-mq code path.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
> drivers/scsi/scsi_lib.c | 40 ++++++++++++++++++++++------------------
> 1 file changed, 22 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
> index 85cf0ef..04c3684 100644
> --- a/drivers/scsi/scsi_lib.c
> +++ b/drivers/scsi/scsi_lib.c
> @@ -1092,6 +1092,27 @@ static int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req)
> return scsi_cmd_to_driver(cmd)->init_command(cmd);
> }
>
> +static int scsi_setup_cmnd(struct scsi_device *sdev, struct request *req)
> +{
> + struct scsi_cmnd *cmd = req->special;
> +
> + if (!blk_rq_bytes(req))
> + cmd->sc_data_direction = DMA_NONE;
> + else if (rq_data_dir(req) == WRITE)
> + cmd->sc_data_direction = DMA_TO_DEVICE;
> + else
> + cmd->sc_data_direction = DMA_FROM_DEVICE;
> +
> + switch (req->cmd_type) {
> + case REQ_TYPE_FS:
> + return scsi_setup_fs_cmnd(sdev, req);
> + case REQ_TYPE_BLOCK_PC:
> + return scsi_setup_blk_pc_cmnd(sdev, req);
> + default:
> + return BLKPREP_KILL;
> + }
> +}
> +
> static int
> scsi_prep_state_check(struct scsi_device *sdev, struct request *req)
> {
> @@ -1195,24 +1216,7 @@ static int scsi_prep_fn(struct request_queue *q, struct request *req)
> goto out;
> }
>
> - if (!blk_rq_bytes(req))
> - cmd->sc_data_direction = DMA_NONE;
> - else if (rq_data_dir(req) == WRITE)
> - cmd->sc_data_direction = DMA_TO_DEVICE;
> - else
> - cmd->sc_data_direction = DMA_FROM_DEVICE;
> -
> - switch (req->cmd_type) {
> - case REQ_TYPE_FS:
> - ret = scsi_setup_fs_cmnd(sdev, req);
> - break;
> - case REQ_TYPE_BLOCK_PC:
> - ret = scsi_setup_blk_pc_cmnd(sdev, req);
> - break;
> - default:
> - ret = BLKPREP_KILL;
> - }
> -
> + ret = scsi_setup_cmnd(sdev, req);
> out:
> return scsi_prep_return(q, req, ret);
> }
Reviewed-by: Webb Scales <webbnh@hp.com>
next prev parent reply other threads:[~2014-07-22 17:20 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-18 10:12 scsi-mq V4 Christoph Hellwig
2014-07-18 10:13 ` [PATCH 01/14] scsi: add scsi_setup_cmnd helper Christoph Hellwig
2014-07-22 3:42 ` Martin K. Petersen
2014-07-22 17:20 ` Webb Scales [this message]
2014-07-18 10:13 ` [PATCH 02/14] scsi: split __scsi_queue_insert Christoph Hellwig
2014-07-22 3:44 ` Martin K. Petersen
2014-07-18 10:13 ` [PATCH 03/14] scsi: centralize command re-queueing in scsi_dispatch_fn Christoph Hellwig
2014-07-22 3:46 ` Martin K. Petersen
2014-07-18 10:13 ` [PATCH 04/14] scsi: set ->scsi_done before calling scsi_dispatch_cmd Christoph Hellwig
2014-07-22 3:48 ` Martin K. Petersen
2014-07-18 10:13 ` [PATCH 05/14] scsi: push host_lock down into scsi_{host,target}_queue_ready Christoph Hellwig
2014-07-22 3:52 ` Martin K. Petersen
2014-07-18 10:13 ` [PATCH 06/14] scsi: convert target_busy to an atomic_t Christoph Hellwig
2014-07-22 3:56 ` Martin K. Petersen
2014-07-18 10:13 ` [PATCH 07/14] scsi: convert host_busy to atomic_t Christoph Hellwig
2014-07-22 4:01 ` Martin K. Petersen
2014-07-22 4:18 ` Martin K. Petersen
2014-07-25 11:38 ` Christoph Hellwig
2014-07-18 10:13 ` [PATCH 08/14] scsi: convert device_busy " Christoph Hellwig
2014-07-18 10:13 ` [PATCH 09/14] scsi: fix the {host,target,device}_blocked counter mess Christoph Hellwig
2014-07-25 19:08 ` Martin K. Petersen
2014-07-18 10:13 ` [PATCH 10/14] scsi: only maintain target_blocked if the driver has a target queue limit Christoph Hellwig
2014-07-25 19:10 ` Martin K. Petersen
2014-07-18 10:13 ` [PATCH 11/14] scsi: unwind blk_end_request_all and blk_end_request_err calls Christoph Hellwig
2014-07-25 19:12 ` Martin K. Petersen
2014-07-18 10:13 ` [PATCH 12/14] scatterlist: allow chaining to preallocated chunks Christoph Hellwig
2014-07-25 19:15 ` Martin K. Petersen
2014-07-18 10:13 ` [PATCH 13/14] scsi: add support for a blk-mq based I/O path Christoph Hellwig
2014-07-25 19:29 ` Martin K. Petersen
2014-08-18 22:21 ` Kashyap Desai
2014-08-19 15:41 ` Kashyap Desai
2014-08-19 16:06 ` Christoph Hellwig
2014-08-19 16:11 ` Kashyap Desai
2014-07-18 10:13 ` [PATCH 14/14] fnic: reject device resets without assigned tags for the blk-mq case Christoph Hellwig
2014-07-25 19:31 ` Martin K. Petersen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53CE9D5E.3000607@hp.com \
--to=webbnh@hp.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=hch@lst.de \
--cc=linux-scsi@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).