svn commit: r317322 - stable/10/sys/dev/isp
Alexander Motin
mav at FreeBSD.org
Sun Apr 23 07:37:16 UTC 2017
Author: mav
Date: Sun Apr 23 07:37:14 2017
New Revision: 317322
URL: https://svnweb.freebsd.org/changeset/base/317322
Log:
MFC r316652: Fix few minor issues found by Clang Analyzer.
Modified:
stable/10/sys/dev/isp/isp.c
stable/10/sys/dev/isp/isp_freebsd.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/isp/isp.c
==============================================================================
--- stable/10/sys/dev/isp/isp.c Sun Apr 23 07:36:44 2017 (r317321)
+++ stable/10/sys/dev/isp/isp.c Sun Apr 23 07:37:14 2017 (r317322)
@@ -2662,7 +2662,8 @@ isp_plogx(ispsoftc_t *isp, int chan, uin
break;
}
if (msg) {
- isp_prt(isp, ISP_LOGERR, "Chan %d PLOGX PortID 0x%06x to N-Port handle 0x%x: %s", chan, portid, handle, msg);
+ isp_prt(isp, lev, "Chan %d PLOGX PortID 0x%06x to N-Port handle 0x%x: %s",
+ chan, portid, handle, msg);
}
return (rval);
}
Modified: stable/10/sys/dev/isp/isp_freebsd.c
==============================================================================
--- stable/10/sys/dev/isp/isp_freebsd.c Sun Apr 23 07:36:44 2017 (r317321)
+++ stable/10/sys/dev/isp/isp_freebsd.c Sun Apr 23 07:37:14 2017 (r317322)
@@ -3791,7 +3791,6 @@ changed:
nlstate = reason = 0;
}
va_end(ap);
- fc = ISP_FC_PC(isp, bus);
if (evt == ISPASYNC_CHANGE_PDB) {
msg = "Port Database Changed";
More information about the svn-src-all
mailing list