aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>1999-04-11 02:27:06 +0000
committerEivind Eklund <eivind@FreeBSD.org>1999-04-11 02:27:06 +0000
commit2a96b3faf943214bb0cdd29440856d8c98fc0c18 (patch)
treef5af92e22279574e668364f78e41dfa2bc146c32
parent632a035f84c0c74d4fc8582b75a623608a8e1e9d (diff)
Notes
-rw-r--r--sys/kern/subr_devstat.c4
-rw-r--r--sys/kern/subr_rman.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/subr_devstat.c b/sys/kern/subr_devstat.c
index d08c0c9d5aea..a724d038c5c5 100644
--- a/sys/kern/subr_devstat.c
+++ b/sys/kern/subr_devstat.c
@@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: subr_devstat.c,v 1.8 1998/12/27 18:03:29 dfr Exp $
+ * $Id: subr_devstat.c,v 1.9 1999/02/10 00:03:47 ken Exp $
*/
#include <sys/param.h>
@@ -42,7 +42,7 @@ static long devstat_generation;
static int devstat_version = DEVSTAT_VERSION;
static int devstat_current_devnumber;
-STAILQ_HEAD(devstatlist, devstat) device_statq;
+static STAILQ_HEAD(devstatlist, devstat) device_statq;
/*
* Take a malloced and zeroed devstat structure given to us, fill it in
diff --git a/sys/kern/subr_rman.c b/sys/kern/subr_rman.c
index 0970366d0f8e..fee2e2aac87b 100644
--- a/sys/kern/subr_rman.c
+++ b/sys/kern/subr_rman.c
@@ -26,7 +26,7 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: subr_rman.c,v 1.4 1999/01/02 11:34:55 bde Exp $
+ * $Id: subr_rman.c,v 1.5 1999/03/29 08:30:17 dfr Exp $
*/
/*
@@ -65,7 +65,7 @@
#include <sys/rman.h>
#include <sys/bus.h> /* XXX debugging */
-MALLOC_DEFINE(M_RMAN, "rman", "Resource manager");
+static MALLOC_DEFINE(M_RMAN, "rman", "Resource manager");
struct rman_head rman_head;
#ifndef NULL_SIMPLELOCKS