mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
LINT related fixes (as noticed by bde)
This commit is contained in:
parent
b775674772
commit
413f5a8add
1 changed files with 6 additions and 6 deletions
|
|
@ -611,28 +611,28 @@ isp_got_msg_fc(struct ispsoftc *isp, int bus, in_fcentry_t *inp)
|
|||
|
||||
if (inp->in_task_flags & TASK_FLAGS_ABORT_TASK) {
|
||||
isp_prt(isp, ISP_LOGINFO, f1, "ABORT TASK",
|
||||
inp->in_iid, msg.nt_lun, inp->in_seqid);
|
||||
inp->in_iid, lun, inp->in_seqid);
|
||||
msg.nt_msg[0] = MSG_ABORT_TAG;
|
||||
} else if (inp->in_task_flags & TASK_FLAGS_CLEAR_TASK_SET) {
|
||||
isp_prt(isp, ISP_LOGINFO, f1, "CLEAR TASK SET",
|
||||
inp->in_iid, msg.nt_lun, inp->in_seqid);
|
||||
inp->in_iid, lun, inp->in_seqid);
|
||||
msg.nt_msg[0] = MSG_CLEAR_QUEUE;
|
||||
} else if (inp->in_task_flags & TASK_FLAGS_TARGET_RESET) {
|
||||
isp_prt(isp, ISP_LOGINFO, f1, "TARGET RESET",
|
||||
inp->in_iid, msg.nt_lun, inp->in_seqid);
|
||||
inp->in_iid, lun, inp->in_seqid);
|
||||
msg.nt_msg[0] = MSG_BUS_DEV_RESET;
|
||||
} else if (inp->in_task_flags & TASK_FLAGS_CLEAR_ACA) {
|
||||
isp_prt(isp, ISP_LOGINFO, f1, "CLEAR ACA",
|
||||
inp->in_iid, msg.nt_lun, inp->in_seqid);
|
||||
inp->in_iid, lun, inp->in_seqid);
|
||||
/* ???? */
|
||||
msg.nt_msg[0] = MSG_REL_RECOVERY;
|
||||
} else if (inp->in_task_flags & TASK_FLAGS_TERMINATE_TASK) {
|
||||
isp_prt(isp, ISP_LOGINFO, f1, "TERMINATE TASK",
|
||||
inp->in_iid, msg.nt_lun, inp->in_seqid);
|
||||
inp->in_iid, lun, inp->in_seqid);
|
||||
msg.nt_msg[0] = MSG_TERM_IO_PROC;
|
||||
} else {
|
||||
isp_prt(isp, ISP_LOGWARN, f2, "task flag",
|
||||
inp->in_status, msg.nt_lun, inp->in_iid,
|
||||
inp->in_status, lun, inp->in_iid,
|
||||
inp->in_task_flags, inp->in_seqid);
|
||||
}
|
||||
if (msg.nt_msg[0]) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue