Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Feb 2009 07:53:08 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r188061 - head/sys/kern
Message-ID:  <200902030753.n137r8jI021448@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Tue Feb  3 07:53:08 2009
New Revision: 188061
URL: http://svn.freebsd.org/changeset/base/188061

Log:
  rman_debug should be static, so make it static.

Modified:
  head/sys/kern/subr_rman.c

Modified: head/sys/kern/subr_rman.c
==============================================================================
--- head/sys/kern/subr_rman.c	Tue Feb  3 07:52:36 2009	(r188060)
+++ head/sys/kern/subr_rman.c	Tue Feb  3 07:53:08 2009	(r188061)
@@ -99,7 +99,7 @@ struct resource_i {
 	int	r_rid;		/* optional rid for this resource. */
 };
 
-int     rman_debug = 0;
+static int     rman_debug = 0;
 TUNABLE_INT("debug.rman_debug", &rman_debug);
 SYSCTL_INT(_debug, OID_AUTO, rman_debug, CTLFLAG_RW,
     &rman_debug, 0, "rman debug");



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