Commit 84090d42 authored by Bart Van Assche's avatar Bart Van Assche Committed by Martin K. Petersen

scsi: hpsa: Use scsi_cmd_to_rq() instead of scsi_cmnd.request

Prepare for removal of the request pointer by using scsi_cmd_to_rq()
instead. This patch does not change any functionality.

Link: https://lore.kernel.org/r/20210809230355.8186-23-bvanassche@acm.orgAcked-by: default avatarDon Brace <don.brace@microchip.com>
Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 1effbfac
...@@ -5686,7 +5686,7 @@ static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd) ...@@ -5686,7 +5686,7 @@ static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
/* Get the ptr to our adapter structure out of cmd->host. */ /* Get the ptr to our adapter structure out of cmd->host. */
h = sdev_to_hba(cmd->device); h = sdev_to_hba(cmd->device);
BUG_ON(cmd->request->tag < 0); BUG_ON(scsi_cmd_to_rq(cmd)->tag < 0);
dev = cmd->device->hostdata; dev = cmd->device->hostdata;
if (!dev) { if (!dev) {
...@@ -5729,7 +5729,7 @@ static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd) ...@@ -5729,7 +5729,7 @@ static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
* and is therefore a brand-new command. * and is therefore a brand-new command.
*/ */
if (likely(cmd->retries == 0 && if (likely(cmd->retries == 0 &&
!blk_rq_is_passthrough(cmd->request) && !blk_rq_is_passthrough(scsi_cmd_to_rq(cmd)) &&
h->acciopath_status)) { h->acciopath_status)) {
/* Submit with the retry_pending flag unset. */ /* Submit with the retry_pending flag unset. */
rc = hpsa_ioaccel_submit(h, c, cmd, false); rc = hpsa_ioaccel_submit(h, c, cmd, false);
...@@ -5894,7 +5894,7 @@ static int hpsa_scsi_add_host(struct ctlr_info *h) ...@@ -5894,7 +5894,7 @@ static int hpsa_scsi_add_host(struct ctlr_info *h)
*/ */
static int hpsa_get_cmd_index(struct scsi_cmnd *scmd) static int hpsa_get_cmd_index(struct scsi_cmnd *scmd)
{ {
int idx = scmd->request->tag; int idx = scsi_cmd_to_rq(scmd)->tag;
if (idx < 0) if (idx < 0)
return idx; return idx;
......
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