"Port Type not registered" is not a real error for GIT_PT.
This commit is contained in:
parent
32b7e40e69
commit
ae77193109
@ -3783,7 +3783,10 @@ fail:
|
||||
goto abort;
|
||||
if (rs->snscb_cthdr.ct_cmd_resp != LS_ACC) {
|
||||
int level;
|
||||
if (rs->snscb_cthdr.ct_reason == 9 && rs->snscb_cthdr.ct_explanation == 7) {
|
||||
/* FC-4 Type and Port Type not registered are not errors. */
|
||||
if (rs->snscb_cthdr.ct_reason == 9 &&
|
||||
(rs->snscb_cthdr.ct_explanation == 0x07 ||
|
||||
rs->snscb_cthdr.ct_explanation == 0x0a)) {
|
||||
level = ISP_LOG_SANCFG;
|
||||
} else {
|
||||
level = ISP_LOGWARN;
|
||||
|
Loading…
x
Reference in New Issue
Block a user