Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Dec 2011 23:39:08 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r228723 - head/sys/dev/usb/controller
Message-ID:  <201112192339.pBJNd83s080554@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Mon Dec 19 23:39:08 2011
New Revision: 228723
URL: http://svn.freebsd.org/changeset/base/228723

Log:
  Make the recently added "no_shutdown_wait" sysctl writeable.
  
  Suggested by:	avg @
  MFC after:	3 days

Modified:
  head/sys/dev/usb/controller/usb_controller.c

Modified: head/sys/dev/usb/controller/usb_controller.c
==============================================================================
--- head/sys/dev/usb/controller/usb_controller.c	Mon Dec 19 20:44:44 2011	(r228722)
+++ head/sys/dev/usb/controller/usb_controller.c	Mon Dec 19 23:39:08 2011	(r228723)
@@ -91,7 +91,7 @@ SYSCTL_INT(_hw_usb, OID_AUTO, no_boot_wa
 
 static int usb_no_shutdown_wait = 0;
 TUNABLE_INT("hw.usb.no_shutdown_wait", &usb_no_shutdown_wait);
-SYSCTL_INT(_hw_usb, OID_AUTO, no_shutdown_wait, CTLFLAG_RDTUN, &usb_no_shutdown_wait, 0,
+SYSCTL_INT(_hw_usb, OID_AUTO, no_shutdown_wait, CTLFLAG_RW|CTLFLAG_TUN, &usb_no_shutdown_wait, 0,
     "No USB device waiting at system shutdown.");
 
 static devclass_t usb_devclass;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112192339.pBJNd83s080554>