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

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

Prepare for removal of the request pointer by using scsi_cmd_to_rq()
instead. Cast away constness where necessary when passing a SCSI command
pointer to scsi_cmd_to_rq(). This patch does not change any functionality.

Link: https://lore.kernel.org/r/20210809230355.8186-3-bvanassche@acm.org
Cc: Christoph Hellwig <hch@lst.de>
Cc: Hannes Reinecke <hare@suse.de>
Cc: Ming Lei <ming.lei@redhat.com>
Reviewed-by: default avatarHannes Reinecke <hare@suse.de>
Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 51f3a478
...@@ -190,7 +190,7 @@ void scsi_finish_command(struct scsi_cmnd *cmd) ...@@ -190,7 +190,7 @@ void scsi_finish_command(struct scsi_cmnd *cmd)
"(result %x)\n", cmd->result)); "(result %x)\n", cmd->result));
good_bytes = scsi_bufflen(cmd); good_bytes = scsi_bufflen(cmd);
if (!blk_rq_is_passthrough(cmd->request)) { if (!blk_rq_is_passthrough(scsi_cmd_to_rq(cmd))) {
int old_good_bytes = good_bytes; int old_good_bytes = good_bytes;
drv = scsi_cmd_to_driver(cmd); drv = scsi_cmd_to_driver(cmd);
if (drv->done) if (drv->done)
......
...@@ -242,7 +242,7 @@ scsi_abort_command(struct scsi_cmnd *scmd) ...@@ -242,7 +242,7 @@ scsi_abort_command(struct scsi_cmnd *scmd)
*/ */
static void scsi_eh_reset(struct scsi_cmnd *scmd) static void scsi_eh_reset(struct scsi_cmnd *scmd)
{ {
if (!blk_rq_is_passthrough(scmd->request)) { if (!blk_rq_is_passthrough(scsi_cmd_to_rq(scmd))) {
struct scsi_driver *sdrv = scsi_cmd_to_driver(scmd); struct scsi_driver *sdrv = scsi_cmd_to_driver(scmd);
if (sdrv->eh_reset) if (sdrv->eh_reset)
sdrv->eh_reset(scmd); sdrv->eh_reset(scmd);
...@@ -1182,7 +1182,7 @@ static enum scsi_disposition scsi_request_sense(struct scsi_cmnd *scmd) ...@@ -1182,7 +1182,7 @@ static enum scsi_disposition scsi_request_sense(struct scsi_cmnd *scmd)
static enum scsi_disposition static enum scsi_disposition
scsi_eh_action(struct scsi_cmnd *scmd, enum scsi_disposition rtn) scsi_eh_action(struct scsi_cmnd *scmd, enum scsi_disposition rtn)
{ {
if (!blk_rq_is_passthrough(scmd->request)) { if (!blk_rq_is_passthrough(scsi_cmd_to_rq(scmd))) {
struct scsi_driver *sdrv = scsi_cmd_to_driver(scmd); struct scsi_driver *sdrv = scsi_cmd_to_driver(scmd);
if (sdrv->eh_action) if (sdrv->eh_action)
rtn = sdrv->eh_action(scmd, rtn); rtn = sdrv->eh_action(scmd, rtn);
...@@ -1750,21 +1750,23 @@ static void scsi_eh_offline_sdevs(struct list_head *work_q, ...@@ -1750,21 +1750,23 @@ static void scsi_eh_offline_sdevs(struct list_head *work_q,
*/ */
int scsi_noretry_cmd(struct scsi_cmnd *scmd) int scsi_noretry_cmd(struct scsi_cmnd *scmd)
{ {
struct request *req = scsi_cmd_to_rq(scmd);
switch (host_byte(scmd->result)) { switch (host_byte(scmd->result)) {
case DID_OK: case DID_OK:
break; break;
case DID_TIME_OUT: case DID_TIME_OUT:
goto check_type; goto check_type;
case DID_BUS_BUSY: case DID_BUS_BUSY:
return (scmd->request->cmd_flags & REQ_FAILFAST_TRANSPORT); return req->cmd_flags & REQ_FAILFAST_TRANSPORT;
case DID_PARITY: case DID_PARITY:
return (scmd->request->cmd_flags & REQ_FAILFAST_DEV); return req->cmd_flags & REQ_FAILFAST_DEV;
case DID_ERROR: case DID_ERROR:
if (get_status_byte(scmd) == SAM_STAT_RESERVATION_CONFLICT) if (get_status_byte(scmd) == SAM_STAT_RESERVATION_CONFLICT)
return 0; return 0;
fallthrough; fallthrough;
case DID_SOFT_ERROR: case DID_SOFT_ERROR:
return (scmd->request->cmd_flags & REQ_FAILFAST_DRIVER); return req->cmd_flags & REQ_FAILFAST_DRIVER;
} }
if (!scsi_status_is_check_condition(scmd->result)) if (!scsi_status_is_check_condition(scmd->result))
...@@ -1775,8 +1777,7 @@ int scsi_noretry_cmd(struct scsi_cmnd *scmd) ...@@ -1775,8 +1777,7 @@ int scsi_noretry_cmd(struct scsi_cmnd *scmd)
* assume caller has checked sense and determined * assume caller has checked sense and determined
* the check condition was retryable. * the check condition was retryable.
*/ */
if (scmd->request->cmd_flags & REQ_FAILFAST_DEV || if (req->cmd_flags & REQ_FAILFAST_DEV || blk_rq_is_passthrough(req))
blk_rq_is_passthrough(scmd->request))
return 1; return 1;
return 0; return 0;
......
...@@ -119,13 +119,15 @@ scsi_set_blocked(struct scsi_cmnd *cmd, int reason) ...@@ -119,13 +119,15 @@ scsi_set_blocked(struct scsi_cmnd *cmd, int reason)
static void scsi_mq_requeue_cmd(struct scsi_cmnd *cmd) static void scsi_mq_requeue_cmd(struct scsi_cmnd *cmd)
{ {
if (cmd->request->rq_flags & RQF_DONTPREP) { struct request *rq = scsi_cmd_to_rq(cmd);
cmd->request->rq_flags &= ~RQF_DONTPREP;
if (rq->rq_flags & RQF_DONTPREP) {
rq->rq_flags &= ~RQF_DONTPREP;
scsi_mq_uninit_cmd(cmd); scsi_mq_uninit_cmd(cmd);
} else { } else {
WARN_ON_ONCE(true); WARN_ON_ONCE(true);
} }
blk_mq_requeue_request(cmd->request, true); blk_mq_requeue_request(rq, true);
} }
/** /**
...@@ -164,7 +166,7 @@ static void __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, bool unbusy) ...@@ -164,7 +166,7 @@ static void __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, bool unbusy)
*/ */
cmd->result = 0; cmd->result = 0;
blk_mq_requeue_request(cmd->request, true); blk_mq_requeue_request(scsi_cmd_to_rq(cmd), true);
} }
/** /**
...@@ -478,7 +480,7 @@ void scsi_run_host_queues(struct Scsi_Host *shost) ...@@ -478,7 +480,7 @@ void scsi_run_host_queues(struct Scsi_Host *shost)
static void scsi_uninit_cmd(struct scsi_cmnd *cmd) static void scsi_uninit_cmd(struct scsi_cmnd *cmd)
{ {
if (!blk_rq_is_passthrough(cmd->request)) { if (!blk_rq_is_passthrough(scsi_cmd_to_rq(cmd))) {
struct scsi_driver *drv = scsi_cmd_to_driver(cmd); struct scsi_driver *drv = scsi_cmd_to_driver(cmd);
if (drv->uninit_command) if (drv->uninit_command)
...@@ -624,7 +626,7 @@ static void scsi_io_completion_reprep(struct scsi_cmnd *cmd, ...@@ -624,7 +626,7 @@ static void scsi_io_completion_reprep(struct scsi_cmnd *cmd,
static bool scsi_cmd_runtime_exceeced(struct scsi_cmnd *cmd) static bool scsi_cmd_runtime_exceeced(struct scsi_cmnd *cmd)
{ {
struct request *req = cmd->request; struct request *req = scsi_cmd_to_rq(cmd);
unsigned long wait_for; unsigned long wait_for;
if (cmd->allowed == SCSI_CMD_RETRIES_NO_LIMIT) if (cmd->allowed == SCSI_CMD_RETRIES_NO_LIMIT)
...@@ -643,7 +645,7 @@ static bool scsi_cmd_runtime_exceeced(struct scsi_cmnd *cmd) ...@@ -643,7 +645,7 @@ static bool scsi_cmd_runtime_exceeced(struct scsi_cmnd *cmd)
static void scsi_io_completion_action(struct scsi_cmnd *cmd, int result) static void scsi_io_completion_action(struct scsi_cmnd *cmd, int result)
{ {
struct request_queue *q = cmd->device->request_queue; struct request_queue *q = cmd->device->request_queue;
struct request *req = cmd->request; struct request *req = scsi_cmd_to_rq(cmd);
int level = 0; int level = 0;
enum {ACTION_FAIL, ACTION_REPREP, ACTION_RETRY, enum {ACTION_FAIL, ACTION_REPREP, ACTION_RETRY,
ACTION_DELAYED_RETRY} action; ACTION_DELAYED_RETRY} action;
...@@ -818,7 +820,7 @@ static int scsi_io_completion_nz_result(struct scsi_cmnd *cmd, int result, ...@@ -818,7 +820,7 @@ static int scsi_io_completion_nz_result(struct scsi_cmnd *cmd, int result,
{ {
bool sense_valid; bool sense_valid;
bool sense_current = true; /* false implies "deferred sense" */ bool sense_current = true; /* false implies "deferred sense" */
struct request *req = cmd->request; struct request *req = scsi_cmd_to_rq(cmd);
struct scsi_sense_hdr sshdr; struct scsi_sense_hdr sshdr;
sense_valid = scsi_command_normalize_sense(cmd, &sshdr); sense_valid = scsi_command_normalize_sense(cmd, &sshdr);
...@@ -907,7 +909,7 @@ void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes) ...@@ -907,7 +909,7 @@ void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes)
{ {
int result = cmd->result; int result = cmd->result;
struct request_queue *q = cmd->device->request_queue; struct request_queue *q = cmd->device->request_queue;
struct request *req = cmd->request; struct request *req = scsi_cmd_to_rq(cmd);
blk_status_t blk_stat = BLK_STS_OK; blk_status_t blk_stat = BLK_STS_OK;
if (unlikely(result)) /* a nz result may or may not be an error */ if (unlikely(result)) /* a nz result may or may not be an error */
...@@ -978,7 +980,7 @@ static inline bool scsi_cmd_needs_dma_drain(struct scsi_device *sdev, ...@@ -978,7 +980,7 @@ static inline bool scsi_cmd_needs_dma_drain(struct scsi_device *sdev,
blk_status_t scsi_alloc_sgtables(struct scsi_cmnd *cmd) blk_status_t scsi_alloc_sgtables(struct scsi_cmnd *cmd)
{ {
struct scsi_device *sdev = cmd->device; struct scsi_device *sdev = cmd->device;
struct request *rq = cmd->request; struct request *rq = scsi_cmd_to_rq(cmd);
unsigned short nr_segs = blk_rq_nr_phys_segments(rq); unsigned short nr_segs = blk_rq_nr_phys_segments(rq);
struct scatterlist *last_sg = NULL; struct scatterlist *last_sg = NULL;
blk_status_t ret; blk_status_t ret;
...@@ -1112,7 +1114,7 @@ void scsi_init_command(struct scsi_device *dev, struct scsi_cmnd *cmd) ...@@ -1112,7 +1114,7 @@ void scsi_init_command(struct scsi_device *dev, struct scsi_cmnd *cmd)
{ {
void *buf = cmd->sense_buffer; void *buf = cmd->sense_buffer;
void *prot = cmd->prot_sdb; void *prot = cmd->prot_sdb;
struct request *rq = blk_mq_rq_from_pdu(cmd); struct request *rq = scsi_cmd_to_rq(cmd);
unsigned int flags = cmd->flags & SCMD_PRESERVED_FLAGS; unsigned int flags = cmd->flags & SCMD_PRESERVED_FLAGS;
unsigned long jiffies_at_alloc; unsigned long jiffies_at_alloc;
int retries, to_clear; int retries, to_clear;
...@@ -1577,12 +1579,12 @@ static blk_status_t scsi_prepare_cmd(struct request *req) ...@@ -1577,12 +1579,12 @@ static blk_status_t scsi_prepare_cmd(struct request *req)
static void scsi_mq_done(struct scsi_cmnd *cmd) static void scsi_mq_done(struct scsi_cmnd *cmd)
{ {
if (unlikely(blk_should_fake_timeout(cmd->request->q))) if (unlikely(blk_should_fake_timeout(scsi_cmd_to_rq(cmd)->q)))
return; return;
if (unlikely(test_and_set_bit(SCMD_STATE_COMPLETE, &cmd->state))) if (unlikely(test_and_set_bit(SCMD_STATE_COMPLETE, &cmd->state)))
return; return;
trace_scsi_dispatch_cmd_done(cmd); trace_scsi_dispatch_cmd_done(cmd);
blk_mq_complete_request(cmd->request); blk_mq_complete_request(scsi_cmd_to_rq(cmd));
} }
static void scsi_mq_put_budget(struct request_queue *q, int budget_token) static void scsi_mq_put_budget(struct request_queue *q, int budget_token)
......
...@@ -28,8 +28,9 @@ static void scsi_log_release_buffer(char *bufptr) ...@@ -28,8 +28,9 @@ static void scsi_log_release_buffer(char *bufptr)
static inline const char *scmd_name(const struct scsi_cmnd *scmd) static inline const char *scmd_name(const struct scsi_cmnd *scmd)
{ {
return scmd->request->rq_disk ? struct request *rq = scsi_cmd_to_rq((struct scsi_cmnd *)scmd);
scmd->request->rq_disk->disk_name : NULL;
return rq->rq_disk ? rq->rq_disk->disk_name : NULL;
} }
static size_t sdev_format_header(char *logbuf, size_t logbuf_len, static size_t sdev_format_header(char *logbuf, size_t logbuf_len,
...@@ -91,7 +92,7 @@ void scmd_printk(const char *level, const struct scsi_cmnd *scmd, ...@@ -91,7 +92,7 @@ void scmd_printk(const char *level, const struct scsi_cmnd *scmd,
if (!logbuf) if (!logbuf)
return; return;
off = sdev_format_header(logbuf, logbuf_len, scmd_name(scmd), off = sdev_format_header(logbuf, logbuf_len, scmd_name(scmd),
scmd->request->tag); scsi_cmd_to_rq((struct scsi_cmnd *)scmd)->tag);
if (off < logbuf_len) { if (off < logbuf_len) {
va_start(args, fmt); va_start(args, fmt);
off += vscnprintf(logbuf + off, logbuf_len - off, fmt, args); off += vscnprintf(logbuf + off, logbuf_len - off, fmt, args);
...@@ -188,7 +189,7 @@ void scsi_print_command(struct scsi_cmnd *cmd) ...@@ -188,7 +189,7 @@ void scsi_print_command(struct scsi_cmnd *cmd)
return; return;
off = sdev_format_header(logbuf, logbuf_len, off = sdev_format_header(logbuf, logbuf_len,
scmd_name(cmd), cmd->request->tag); scmd_name(cmd), scsi_cmd_to_rq(cmd)->tag);
if (off >= logbuf_len) if (off >= logbuf_len)
goto out_printk; goto out_printk;
off += scnprintf(logbuf + off, logbuf_len - off, "CDB: "); off += scnprintf(logbuf + off, logbuf_len - off, "CDB: ");
...@@ -210,7 +211,7 @@ void scsi_print_command(struct scsi_cmnd *cmd) ...@@ -210,7 +211,7 @@ void scsi_print_command(struct scsi_cmnd *cmd)
off = sdev_format_header(logbuf, logbuf_len, off = sdev_format_header(logbuf, logbuf_len,
scmd_name(cmd), scmd_name(cmd),
cmd->request->tag); scsi_cmd_to_rq(cmd)->tag);
if (!WARN_ON(off > logbuf_len - 58)) { if (!WARN_ON(off > logbuf_len - 58)) {
off += scnprintf(logbuf + off, logbuf_len - off, off += scnprintf(logbuf + off, logbuf_len - off,
"CDB[%02x]: ", k); "CDB[%02x]: ", k);
...@@ -373,7 +374,8 @@ EXPORT_SYMBOL(__scsi_print_sense); ...@@ -373,7 +374,8 @@ EXPORT_SYMBOL(__scsi_print_sense);
/* Normalize and print sense buffer in SCSI command */ /* Normalize and print sense buffer in SCSI command */
void scsi_print_sense(const struct scsi_cmnd *cmd) void scsi_print_sense(const struct scsi_cmnd *cmd)
{ {
scsi_log_print_sense(cmd->device, scmd_name(cmd), cmd->request->tag, scsi_log_print_sense(cmd->device, scmd_name(cmd),
scsi_cmd_to_rq((struct scsi_cmnd *)cmd)->tag,
cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE); cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE);
} }
EXPORT_SYMBOL(scsi_print_sense); EXPORT_SYMBOL(scsi_print_sense);
...@@ -391,8 +393,8 @@ void scsi_print_result(const struct scsi_cmnd *cmd, const char *msg, ...@@ -391,8 +393,8 @@ void scsi_print_result(const struct scsi_cmnd *cmd, const char *msg,
if (!logbuf) if (!logbuf)
return; return;
off = sdev_format_header(logbuf, logbuf_len, off = sdev_format_header(logbuf, logbuf_len, scmd_name(cmd),
scmd_name(cmd), cmd->request->tag); scsi_cmd_to_rq((struct scsi_cmnd *)cmd)->tag);
if (off >= logbuf_len) if (off >= logbuf_len)
goto out_printk; goto out_printk;
......
...@@ -164,7 +164,9 @@ static inline void *scsi_cmd_priv(struct scsi_cmnd *cmd) ...@@ -164,7 +164,9 @@ static inline void *scsi_cmd_priv(struct scsi_cmnd *cmd)
/* make sure not to use it with passthrough commands */ /* make sure not to use it with passthrough commands */
static inline struct scsi_driver *scsi_cmd_to_driver(struct scsi_cmnd *cmd) static inline struct scsi_driver *scsi_cmd_to_driver(struct scsi_cmnd *cmd)
{ {
return *(struct scsi_driver **)cmd->request->rq_disk->private_data; struct request *rq = scsi_cmd_to_rq(cmd);
return *(struct scsi_driver **)rq->rq_disk->private_data;
} }
extern void scsi_finish_command(struct scsi_cmnd *cmd); extern void scsi_finish_command(struct scsi_cmnd *cmd);
...@@ -228,14 +230,14 @@ static inline int scsi_sg_copy_to_buffer(struct scsi_cmnd *cmd, ...@@ -228,14 +230,14 @@ static inline int scsi_sg_copy_to_buffer(struct scsi_cmnd *cmd,
static inline sector_t scsi_get_sector(struct scsi_cmnd *scmd) static inline sector_t scsi_get_sector(struct scsi_cmnd *scmd)
{ {
return blk_rq_pos(scmd->request); return blk_rq_pos(scsi_cmd_to_rq(scmd));
} }
static inline sector_t scsi_get_lba(struct scsi_cmnd *scmd) static inline sector_t scsi_get_lba(struct scsi_cmnd *scmd)
{ {
unsigned int shift = ilog2(scmd->device->sector_size) - SECTOR_SHIFT; unsigned int shift = ilog2(scmd->device->sector_size) - SECTOR_SHIFT;
return blk_rq_pos(scmd->request) >> shift; return blk_rq_pos(scsi_cmd_to_rq(scmd)) >> shift;
} }
/* /*
......
...@@ -271,13 +271,15 @@ sdev_prefix_printk(const char *, const struct scsi_device *, const char *, ...@@ -271,13 +271,15 @@ sdev_prefix_printk(const char *, const struct scsi_device *, const char *,
__printf(3, 4) void __printf(3, 4) void
scmd_printk(const char *, const struct scsi_cmnd *, const char *, ...); scmd_printk(const char *, const struct scsi_cmnd *, const char *, ...);
#define scmd_dbg(scmd, fmt, a...) \ #define scmd_dbg(scmd, fmt, a...) \
do { \ do { \
if ((scmd)->request->rq_disk) \ struct request *__rq = scsi_cmd_to_rq((scmd)); \
sdev_dbg((scmd)->device, "[%s] " fmt, \ \
(scmd)->request->rq_disk->disk_name, ##a);\ if (__rq->rq_disk) \
else \ sdev_dbg((scmd)->device, "[%s] " fmt, \
sdev_dbg((scmd)->device, fmt, ##a); \ __rq->rq_disk->disk_name, ##a); \
else \
sdev_dbg((scmd)->device, fmt, ##a); \
} while (0) } while (0)
enum scsi_target_state { enum scsi_target_state {
......
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