diff options
author | mav <mav@FreeBSD.org> | 2015-11-13 19:54:58 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2015-11-13 19:54:58 +0000 |
commit | 103a6c1ce53ed7897db376eb0600bfe76f166cc7 (patch) | |
tree | 2fd7ff70f68e22237bcc029eb09352ff5f307bb0 /sys/dev/isp/isp.c | |
parent | e65a9ff89b82428d8395838cf1af924ef946c41f (diff) | |
download | FreeBSD-src-103a6c1ce53ed7897db376eb0600bfe76f166cc7.zip FreeBSD-src-103a6c1ce53ed7897db376eb0600bfe76f166cc7.tar.gz |
MFC r289933, r289939: Improve Port Database Changed handling and reporting.
Diffstat (limited to 'sys/dev/isp/isp.c')
-rw-r--r-- | sys/dev/isp/isp.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index f8da1c9..01cea1a 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -6074,21 +6074,21 @@ isp_parse_async_fc(ispsoftc_t *isp, uint16_t mbox) case ASYNC_PDB_CHANGED: { - int nphdl, nlstate, reason; - /* - * We *should* get a channel out of the 24XX, but we don't seem - * to get more than a PDB CHANGED on channel 0, so turn it into - * a broadcast event. - */ + int echan, nphdl, nlstate, reason; + if (IS_24XX(isp)) { nphdl = ISP_READ(isp, OUTMAILBOX1); nlstate = ISP_READ(isp, OUTMAILBOX2); reason = ISP_READ(isp, OUTMAILBOX3) >> 8; + GET_24XX_BUS(isp, chan, "ASYNC_CHANGE_NOTIFY"); + echan = (nphdl == NIL_HANDLE) ? + isp->isp_nchan - 1 : chan; } else { nphdl = NIL_HANDLE; nlstate = reason = 0; + chan = echan = 0; } - for (chan = 0; chan < isp->isp_nchan; chan++) { + for (; chan <= echan; chan++) { fcparam *fcp = FCPARAM(isp, chan); if (fcp->role == ISP_ROLE_NONE) { |