mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Follow the ISPASYNC_PDB_CHANGED -> ISPASYNC_LOGGED_INOUT change. Also,
ISPASYNC_NOTIFY_CHANGE now is for both local loop && fabric changes.
This commit is contained in:
parent
0433833d0d
commit
4b9d588e2c
1 changed files with 8 additions and 2 deletions
|
|
@ -2082,7 +2082,7 @@ isp_async(struct ispsoftc *isp, ispasync_t cmd, void *arg)
|
|||
}
|
||||
isp_prt(isp, ISP_LOGINFO, "Loop UP");
|
||||
break;
|
||||
case ISPASYNC_PDB_CHANGED:
|
||||
case ISPASYNC_LOGGED_INOUT:
|
||||
{
|
||||
const char *fmt = "Target %d (Loop 0x%x) Port ID 0x%x "
|
||||
"role %s %s\n Port WWN 0x%08x%08x\n Node WWN 0x%08x%08x";
|
||||
|
|
@ -2108,7 +2108,13 @@ isp_async(struct ispsoftc *isp, ispasync_t cmd, void *arg)
|
|||
break;
|
||||
}
|
||||
case ISPASYNC_CHANGE_NOTIFY:
|
||||
isp_prt(isp, ISP_LOGINFO, "Name Server Database Changed");
|
||||
if (arg == (void *) 1) {
|
||||
isp_prt(isp, ISP_LOGINFO,
|
||||
"Name Server Database Changed");
|
||||
} else {
|
||||
isp_prt(isp, ISP_LOGINFO,
|
||||
"Name Server Database Changed");
|
||||
}
|
||||
break;
|
||||
#ifdef ISP2100_FABRIC
|
||||
case ISPASYNC_FABRIC_DEV:
|
||||
|
|
|
|||
Loading…
Reference in a new issue