svn commit: r275310 - stable/10/sys/cam/ctl
Edward Tomasz Napierala
trasz at FreeBSD.org
Sun Nov 30 10:36:30 UTC 2014
Author: trasz
Date: Sun Nov 30 10:36:29 2014
New Revision: 275310
URL: https://svnweb.freebsd.org/changeset/base/275310
Log:
MFC r273918:
Change the default log level for iSCSI target from 3 to 1. It should
have been 1 from the beginning; not sure how it ended up at 3.
Sponsored by: The FreeBSD Foundation
Modified:
stable/10/sys/cam/ctl/ctl_frontend_iscsi.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/cam/ctl/ctl_frontend_iscsi.c
==============================================================================
--- stable/10/sys/cam/ctl/ctl_frontend_iscsi.c Sun Nov 30 10:01:47 2014 (r275309)
+++ stable/10/sys/cam/ctl/ctl_frontend_iscsi.c Sun Nov 30 10:36:29 2014 (r275310)
@@ -84,7 +84,7 @@ static uma_zone_t cfiscsi_data_wait_zone
SYSCTL_NODE(_kern_cam_ctl, OID_AUTO, iscsi, CTLFLAG_RD, 0,
"CAM Target Layer iSCSI Frontend");
-static int debug = 3;
+static int debug = 1;
TUNABLE_INT("kern.cam.ctl.iscsi.debug", &debug);
SYSCTL_INT(_kern_cam_ctl_iscsi, OID_AUTO, debug, CTLFLAG_RWTUN,
&debug, 1, "Enable debug messages");
More information about the svn-src-stable
mailing list