diff options
Diffstat (limited to 'sys/kern')
| -rw-r--r-- | sys/kern/subr_devstat.c | 4 | ||||
| -rw-r--r-- | sys/kern/subr_rman.c | 4 |
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 |
