Skip to content

Commit

Permalink
qla2xxx: fix command initialization in target mode.
Browse files Browse the repository at this point in the history
Cc: <stable@vger.kernel.org> # v3.18+
Signed-off-by: Kanoj Sarcar <kanoj.sarcar@qlogic.com>
Signed-off-by: Himanshu Madhani <himanshu.madhani@qlogic.com>
Reviewed-by: Nicholas Bellinger <nab@linux-iscsi.org>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
  • Loading branch information
Kanoj Sarcar authored and Nicholas Bellinger committed Jul 24, 2015
1 parent 6bc85dd commit 9fce125
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/scsi/qla2xxx/qla_target.c
Original file line number Diff line number Diff line change
Expand Up @@ -3345,6 +3345,11 @@ static struct qla_tgt_cmd *qlt_get_tag(scsi_qla_host_t *vha,
cmd->loop_id = sess->loop_id;
cmd->conf_compl_supported = sess->conf_compl_supported;

cmd->cmd_flags = 0;
cmd->jiffies_at_alloc = get_jiffies_64();

cmd->reset_count = vha->hw->chip_reset;

return cmd;
}

Expand Down Expand Up @@ -3451,11 +3456,6 @@ static int qlt_handle_cmd_for_atio(struct scsi_qla_host *vha,
return -ENOMEM;
}

cmd->cmd_flags = 0;
cmd->jiffies_at_alloc = get_jiffies_64();

cmd->reset_count = vha->hw->chip_reset;

cmd->cmd_in_wq = 1;
cmd->cmd_flags |= BIT_0;
INIT_WORK(&cmd->work, qlt_do_work);
Expand Down

0 comments on commit 9fce125

Please sign in to comment.