mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix WWNN/WWPN generation for virtual channels.
MFC after: 1 week
This commit is contained in:
parent
3e92f72cfa
commit
2731e062b5
1 changed files with 3 additions and 6 deletions
|
|
@ -6138,10 +6138,9 @@ isp_default_wwn(ispsoftc_t * isp, int chan, int isactive, int iswwnn)
|
|||
return (seed);
|
||||
}
|
||||
return (0x400000007F000009ull);
|
||||
} else {
|
||||
seed = iswwnn ? fc->def_wwnn : fc->def_wwpn;
|
||||
}
|
||||
|
||||
seed = iswwnn ? fc->def_wwnn : fc->def_wwpn;
|
||||
|
||||
/*
|
||||
* For channel zero just return what we have. For either ACTIVE or
|
||||
|
|
@ -6164,11 +6163,9 @@ isp_default_wwn(ispsoftc_t * isp, int chan, int isactive, int iswwnn)
|
|||
if (seed) {
|
||||
return (seed);
|
||||
}
|
||||
if (isactive) {
|
||||
seed = iswwnn ? ISP_FC_PC(isp, 0)->def_wwnn : ISP_FC_PC(isp, 0)->def_wwpn;
|
||||
if (seed == 0)
|
||||
seed = iswwnn ? FCPARAM(isp, 0)->isp_wwnn_nvram : FCPARAM(isp, 0)->isp_wwpn_nvram;
|
||||
} else {
|
||||
seed = iswwnn ? ISP_FC_PC(isp, 0)->def_wwnn : ISP_FC_PC(isp, 0)->def_wwpn;
|
||||
}
|
||||
|
||||
if (((seed >> 60) & 0xf) == 2) {
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue