On 06/29/2014 03:34 PM, Christoph Hellwig wrote:
Factor out a function to initialize regular read/write commands and leave
sd_init_command as a simple dispatcher to the different prepare routines.

Signed-off-by: Christoph Hellwig <h...@lst.de>
---
  drivers/scsi/sd.c |   58 ++++++++++++++++++++++++++---------------------------
  1 file changed, 29 insertions(+), 29 deletions(-)

diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index 5f85102..ba756b1 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -877,21 +877,7 @@ static int sd_setup_flush_cmnd(struct scsi_cmnd *cmd)
        return BLKPREP_OK;
  }

-static void sd_uninit_command(struct scsi_cmnd *SCpnt)
-{
-       struct request *rq = SCpnt->request;
-
-       if (rq->cmd_flags & REQ_DISCARD)
-               __free_page(rq->completion_data);
-
-       if (SCpnt->cmnd != rq->cmd) {
-               mempool_free(SCpnt->cmnd, sd_cdb_pool);
-               SCpnt->cmnd = NULL;
-               SCpnt->cmd_len = 0;
-       }
-}
-
-static int sd_init_command(struct scsi_cmnd *SCpnt)
+static int sd_setup_read_write_cmnd(struct scsi_cmnd *SCpnt)
  {
        struct request *rq = SCpnt->request;
        struct scsi_device *sdp = SCpnt->device;
@@ -903,20 +889,6 @@ static int sd_init_command(struct scsi_cmnd *SCpnt)
        int ret, host_dif;
        unsigned char protect;

-       /*
-        * Discard request come in as REQ_TYPE_FS but we turn them into
-        * block PC requests to make life easier.
-        */
-       if (rq->cmd_flags & REQ_DISCARD) {
-               ret = sd_setup_discard_cmnd(SCpnt);
-               goto out;
-       } else if (rq->cmd_flags & REQ_WRITE_SAME) {
-               ret = sd_setup_write_same_cmnd(SCpnt);
-               goto out;
-       } else if (rq->cmd_flags & REQ_FLUSH) {
-               ret = sd_setup_flush_cmnd(SCpnt);
-               goto out;
-       }
        ret = scsi_init_io(SCpnt, GFP_ATOMIC);
        if (ret != BLKPREP_OK)
                goto out;
@@ -1148,6 +1120,34 @@ static int sd_init_command(struct scsi_cmnd *SCpnt)
        return ret;
  }

+static int sd_init_command(struct scsi_cmnd *cmd)
+{
+       struct request *rq = cmd->request;
+
+       if (rq->cmd_flags & REQ_DISCARD)
+               return sd_setup_discard_cmnd(cmd);
+       else if (rq->cmd_flags & REQ_WRITE_SAME)
+               return sd_setup_write_same_cmnd(cmd);
+       else if (rq->cmd_flags & REQ_FLUSH)
+               return sd_setup_flush_cmnd(cmd);
+       else
+               return sd_setup_read_write_cmnd(cmd);
+}
+
+static void sd_uninit_command(struct scsi_cmnd *SCpnt)
+{
+       struct request *rq = SCpnt->request;
+
+       if (rq->cmd_flags & REQ_DISCARD)
+               __free_page(rq->completion_data);
+
+       if (SCpnt->cmnd != rq->cmd) {
+               mempool_free(SCpnt->cmnd, sd_cdb_pool);
+               SCpnt->cmnd = NULL;
+               SCpnt->cmd_len = 0;
+       }
+}
+
  /**
   *    sd_open - open a scsi disk device
   *    @inode: only i_rdev member may be used

Reviewed-by: Hannes Reinecke <h...@suse.de>

Cheers,

Hannes
--
Dr. Hannes Reinecke                   zSeries & Storage
h...@suse.de                          +49 911 74053 688
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: J. Hawn, J. Guild, F. Imendörffer, HRB 16746 (AG Nürnberg)
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to