svn commit: r203440 - head/sys/cam

Alexander Motin mav at FreeBSD.org
Wed Feb 3 20:00:56 UTC 2010


Author: mav
Date: Wed Feb  3 20:00:56 2010
New Revision: 203440
URL: http://svn.freebsd.org/changeset/base/203440

Log:
  Disable kern.cam.power_down ATM. It doesn't work fine on some controllers.

Modified:
  head/sys/cam/cam_xpt.c

Modified: head/sys/cam/cam_xpt.c
==============================================================================
--- head/sys/cam/cam_xpt.c	Wed Feb  3 19:31:02 2010	(r203439)
+++ head/sys/cam/cam_xpt.c	Wed Feb  3 20:00:56 2010	(r203440)
@@ -153,7 +153,7 @@ static struct xpt_softc xsoftc;
 TUNABLE_INT("kern.cam.boot_delay", &xsoftc.boot_delay);
 SYSCTL_INT(_kern_cam, OID_AUTO, boot_delay, CTLFLAG_RDTUN,
            &xsoftc.boot_delay, 0, "Bus registration wait time");
-static int	xpt_power_down = 1;
+static int	xpt_power_down = 0;
 TUNABLE_INT("kern.cam.power_down", &xpt_power_down);
 SYSCTL_INT(_kern_cam, OID_AUTO, power_down, CTLFLAG_RW,
            &xpt_power_down, 0, "Power down devices on shutdown");


More information about the svn-src-head mailing list