scsi: qla2xxx: Remove qla_tgt_cmd.released
authorBart Van Assche <bvanassche@acm.org>
Wed, 17 Apr 2019 21:44:31 +0000 (14:44 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Mon, 29 Apr 2019 21:24:50 +0000 (17:24 -0400)
Since the previous patch removed the only statement that sets
qla_tgt_cmd.released, remove the code that depends on that member variable
being set and the member variable itself.

Cc: Himanshu Madhani <hmadhani@marvell.com>
Cc: Giridhar Malavali <gmalavali@marvell.com>
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Acked-by: Himanshu Madhani <hmadhani@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/qla2xxx/qla_target.h
drivers/scsi/qla2xxx/tcm_qla2xxx.c

index 8fb197a..262fc33 100644 (file)
@@ -889,7 +889,6 @@ struct qla_tgt_cmd {
        unsigned int term_exchg:1;
        unsigned int cmd_sent_to_fw:1;
        unsigned int cmd_in_wq:1;
-       unsigned int released:1;
 
        /*
         * This variable may be set from outside the LIO and I/O completion
index 86db073..701e8f8 100644 (file)
@@ -261,7 +261,6 @@ static void tcm_qla2xxx_free_mcmd(struct qla_tgt_mgmt_cmd *mcmd)
 static void tcm_qla2xxx_complete_free(struct work_struct *work)
 {
        struct qla_tgt_cmd *cmd = container_of(work, struct qla_tgt_cmd, work);
-       bool released = false;
        unsigned long flags;
 
        cmd->cmd_in_wq = 0;
@@ -272,14 +271,9 @@ static void tcm_qla2xxx_complete_free(struct work_struct *work)
        cmd->qpair->tgt_counters.qla_core_ret_sta_ctio++;
        cmd->trc_flags |= TRC_CMD_FREE;
        cmd->cmd_sent_to_fw = 0;
-       if (cmd->released)
-               released = true;
        spin_unlock_irqrestore(&cmd->cmd_lock, flags);
 
-       if (released)
-               qlt_free_cmd(cmd);
-       else
-               transport_generic_free_cmd(&cmd->se_cmd, 0);
+       transport_generic_free_cmd(&cmd->se_cmd, 0);
 }
 
 /*
@@ -489,13 +483,6 @@ static void tcm_qla2xxx_handle_data_work(struct work_struct *work)
 
        spin_lock_irqsave(&cmd->cmd_lock, flags);
        cmd->cmd_sent_to_fw = 0;
-
-       if (cmd->released) {
-               spin_unlock_irqrestore(&cmd->cmd_lock, flags);
-               qlt_free_cmd(cmd);
-               return;
-       }
-
        if (cmd->aborted) {
                spin_unlock_irqrestore(&cmd->cmd_lock, flags);