Commit 3868cf8e authored by Christoph Hellwig's avatar Christoph Hellwig

scsi: restructure command initialization for TYPE_FS requests

We should call the device handler prep_fn for all TYPE_FS requests,
not just simple read/write calls that are handled by the disk driver.

Restructure the common I/O code to call the prep_fn handler and zero
out the CDB, and just leave the call to scsi_init_io to the ULDs.
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>
parent 635d98b1
...@@ -1082,11 +1082,10 @@ int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req) ...@@ -1082,11 +1082,10 @@ int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req)
EXPORT_SYMBOL(scsi_setup_blk_pc_cmnd); EXPORT_SYMBOL(scsi_setup_blk_pc_cmnd);
/* /*
* Setup a REQ_TYPE_FS command. These are simple read/write request * Setup a REQ_TYPE_FS command. These are simple request from filesystems
* from filesystems that still need to be translated to SCSI CDBs from * that still need to be translated to SCSI CDBs from the ULD.
* the ULD.
*/ */
int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req) static int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req)
{ {
struct scsi_cmnd *cmd = req->special; struct scsi_cmnd *cmd = req->special;
...@@ -1098,9 +1097,8 @@ int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req) ...@@ -1098,9 +1097,8 @@ int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req)
} }
memset(cmd->cmnd, 0, BLK_MAX_CDB); memset(cmd->cmnd, 0, BLK_MAX_CDB);
return scsi_init_io(cmd, GFP_ATOMIC); return scsi_cmd_to_driver(cmd)->init_command(cmd);
} }
EXPORT_SYMBOL(scsi_setup_fs_cmnd);
static int static int
scsi_prep_state_check(struct scsi_device *sdev, struct request *req) scsi_prep_state_check(struct scsi_device *sdev, struct request *req)
...@@ -1205,12 +1203,16 @@ static int scsi_prep_fn(struct request_queue *q, struct request *req) ...@@ -1205,12 +1203,16 @@ static int scsi_prep_fn(struct request_queue *q, struct request *req)
goto out; goto out;
} }
if (req->cmd_type == REQ_TYPE_FS) switch (req->cmd_type) {
ret = scsi_cmd_to_driver(cmd)->init_command(cmd); case REQ_TYPE_FS:
else if (req->cmd_type == REQ_TYPE_BLOCK_PC) ret = scsi_setup_fs_cmnd(sdev, req);
break;
case REQ_TYPE_BLOCK_PC:
ret = scsi_setup_blk_pc_cmnd(sdev, req); ret = scsi_setup_blk_pc_cmnd(sdev, req);
else break;
default:
ret = BLKPREP_KILL; ret = BLKPREP_KILL;
}
out: out:
return scsi_prep_return(q, req, ret); return scsi_prep_return(q, req, ret);
......
...@@ -894,7 +894,7 @@ static int sd_init_command(struct scsi_cmnd *SCpnt) ...@@ -894,7 +894,7 @@ static int sd_init_command(struct scsi_cmnd *SCpnt)
ret = scsi_setup_flush_cmnd(sdp, rq); ret = scsi_setup_flush_cmnd(sdp, rq);
goto out; goto out;
} }
ret = scsi_setup_fs_cmnd(sdp, rq); ret = scsi_init_io(SCpnt, GFP_ATOMIC);
if (ret != BLKPREP_OK) if (ret != BLKPREP_OK)
goto out; goto out;
SCpnt = rq->special; SCpnt = rq->special;
......
...@@ -385,10 +385,9 @@ static int sr_init_command(struct scsi_cmnd *SCpnt) ...@@ -385,10 +385,9 @@ static int sr_init_command(struct scsi_cmnd *SCpnt)
int block = 0, this_count, s_size; int block = 0, this_count, s_size;
struct scsi_cd *cd; struct scsi_cd *cd;
struct request *rq = SCpnt->request; struct request *rq = SCpnt->request;
struct scsi_device *sdp = SCpnt->device;
int ret; int ret;
ret = scsi_setup_fs_cmnd(sdp, rq); ret = scsi_init_io(SCpnt, GFP_ATOMIC);
if (ret != BLKPREP_OK) if (ret != BLKPREP_OK)
goto out; goto out;
SCpnt = rq->special; SCpnt = rq->special;
......
...@@ -30,6 +30,5 @@ extern int scsi_register_interface(struct class_interface *); ...@@ -30,6 +30,5 @@ extern int scsi_register_interface(struct class_interface *);
class_interface_unregister(intf) class_interface_unregister(intf)
int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req); int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req);
int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req);
#endif /* _SCSI_SCSI_DRIVER_H */ #endif /* _SCSI_SCSI_DRIVER_H */
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