提交 481ce733 编写于 作者: Q Quinn Tran 提交者: Nicholas Bellinger

qla2xxx: Disable ZIO at start time.

Signed-off-by: NQuinn Tran <quinn.tran@qlogic.com>
Signed-off-by: NHimanshu Madhani <himanshu.madhani@qlogic.com>
Signed-off-by: NNicholas Bellinger <nab@linux-iscsi.org>
上级 2f424b9b
......@@ -6544,10 +6544,21 @@ qlt_24xx_config_nvram_stage2(struct scsi_qla_host *vha,
{
struct qla_hw_data *ha = vha->hw;
if (!QLA_TGT_MODE_ENABLED())
return;
if (ha->tgt.node_name_set) {
memcpy(icb->node_name, ha->tgt.tgt_node_name, WWN_SIZE);
icb->firmware_options_1 |= cpu_to_le32(BIT_14);
}
/* disable ZIO at start time. */
if (!vha->flags.init_done) {
uint32_t tmp;
tmp = le32_to_cpu(icb->firmware_options_2);
tmp &= ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
icb->firmware_options_2 = cpu_to_le32(tmp);
}
}
void
......@@ -6638,6 +6649,15 @@ qlt_81xx_config_nvram_stage2(struct scsi_qla_host *vha,
memcpy(icb->node_name, ha->tgt.tgt_node_name, WWN_SIZE);
icb->firmware_options_1 |= cpu_to_le32(BIT_14);
}
/* disable ZIO at start time. */
if (!vha->flags.init_done) {
uint32_t tmp;
tmp = le32_to_cpu(icb->firmware_options_2);
tmp &= ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
icb->firmware_options_2 = cpu_to_le32(tmp);
}
}
void
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册