Commit 8837aa8b authored by Bart Van Assche's avatar Bart Van Assche Committed by Martin K. Petersen

scsi: qla2xxx: Introduce a switch/case statement in qlt_xmit_tm_rsp()

This patch improves code readability but does not change any functionality.

Cc: Himanshu Madhani <himanshu.madhani@cavium.com>
Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Acked-by: default avatarHimanshu Madhani <himanshu.madhani@cavium.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 8700bc76
...@@ -2379,20 +2379,20 @@ void qlt_xmit_tm_rsp(struct qla_tgt_mgmt_cmd *mcmd) ...@@ -2379,20 +2379,20 @@ void qlt_xmit_tm_rsp(struct qla_tgt_mgmt_cmd *mcmd)
} }
if (mcmd->flags == QLA24XX_MGMT_SEND_NACK) { if (mcmd->flags == QLA24XX_MGMT_SEND_NACK) {
if (mcmd->orig_iocb.imm_ntfy.u.isp24.status_subcode == switch (mcmd->orig_iocb.imm_ntfy.u.isp24.status_subcode) {
ELS_LOGO || case ELS_LOGO:
mcmd->orig_iocb.imm_ntfy.u.isp24.status_subcode == case ELS_PRLO:
ELS_PRLO || case ELS_TPRLO:
mcmd->orig_iocb.imm_ntfy.u.isp24.status_subcode ==
ELS_TPRLO) {
ql_dbg(ql_dbg_disc, vha, 0x2106, ql_dbg(ql_dbg_disc, vha, 0x2106,
"TM response logo %phC status %#x state %#x", "TM response logo %phC status %#x state %#x",
mcmd->sess->port_name, mcmd->fc_tm_rsp, mcmd->sess->port_name, mcmd->fc_tm_rsp,
mcmd->flags); mcmd->flags);
qlt_schedule_sess_for_deletion(mcmd->sess); qlt_schedule_sess_for_deletion(mcmd->sess);
} else { break;
default:
qlt_send_notify_ack(vha->hw->base_qpair, qlt_send_notify_ack(vha->hw->base_qpair,
&mcmd->orig_iocb.imm_ntfy, 0, 0, 0, 0, 0, 0); &mcmd->orig_iocb.imm_ntfy, 0, 0, 0, 0, 0, 0);
break;
} }
} else { } else {
if (mcmd->orig_iocb.atio.u.raw.entry_type == ABTS_RECV_24XX) { if (mcmd->orig_iocb.atio.u.raw.entry_type == ABTS_RECV_24XX) {
......
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