mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
scsi: qlogicpti: 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-41-bvanassche@acm.org Signed-off-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
924b3d7a3a
commit
ba4baf0951
@ -890,7 +890,7 @@ static inline void cmd_frob(struct Command_Entry *cmd, struct scsi_cmnd *Cmnd,
|
||||
cmd->control_flags |= CFLAG_WRITE;
|
||||
else
|
||||
cmd->control_flags |= CFLAG_READ;
|
||||
cmd->time_out = Cmnd->request->timeout/HZ;
|
||||
cmd->time_out = scsi_cmd_to_rq(Cmnd)->timeout / HZ;
|
||||
memcpy(cmd->cdb, Cmnd->cmnd, Cmnd->cmd_len);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user