Move callout initialization to a single location; no need to duplicate

that code all over the place.
This commit is contained in:
thorpej 2000-01-19 20:05:30 +00:00
parent 5c54ba1b0d
commit a0397a2573
31 changed files with 59 additions and 263 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.190 2000/01/19 02:52:16 msaitoh Exp $ */
/* $NetBSD: machdep.c,v 1.191 2000/01/19 20:05:30 thorpej Exp $ */
/*-
* Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
@ -79,7 +79,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.190 2000/01/19 02:52:16 msaitoh Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.191 2000/01/19 20:05:30 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -91,7 +91,6 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.190 2000/01/19 02:52:16 msaitoh Exp $"
#include <sys/reboot.h>
#include <sys/device.h>
#include <sys/file.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/mman.h>
@ -984,14 +983,6 @@ cpu_startup()
* map those pages.
*/
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#if defined(DEBUG)
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.144 2000/01/19 02:52:22 msaitoh Exp $ */
/* $NetBSD: machdep.c,v 1.145 2000/01/19 20:05:32 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -60,7 +60,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/msgbuf.h>
@ -348,13 +347,6 @@ cpu_startup()
nmbclusters * mclbytes, VM_MAP_INTRSAFE,
FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.73 1999/12/04 21:20:07 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.74 2000/01/19 20:05:32 thorpej Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@ -47,7 +47,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/callout.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/kernel.h>
@ -452,14 +451,6 @@ cpu_startup()
nmbclusters * mclbytes, VM_MAP_INTRSAFE,
FALSE, NULL);
/*
* Initialise callouts
*/
callfree = callout;
for (loop = 1; loop < ncallout; ++loop)
callout[loop - 1].c_next = &callout[loop];
callout[loop - 1].c_next = NULL;
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.90 2000/01/19 02:52:22 msaitoh Exp $ */
/* $NetBSD: machdep.c,v 1.91 2000/01/19 20:05:33 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -60,7 +60,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
@ -289,12 +288,6 @@ cpu_startup()
if (uvm_map_protect(kernel_map, NBPG, m68k_round_page(&etext),
UVM_PROT_READ|UVM_PROT_EXEC, TRUE) != KERN_SUCCESS)
panic("can't protect kernel text");
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
#ifdef DEBUG
pmapdebug = opmapdebug;

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.47 2000/01/19 03:28:24 danw Exp $ */
/* $NetBSD: machdep.c,v 1.48 2000/01/19 20:05:33 thorpej Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -41,7 +41,6 @@
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/callout.h>
#include <sys/conf.h>
#include <sys/device.h>
#include <sys/exec.h>
@ -550,13 +549,6 @@ cpu_startup()
* pool pages.
*/
/*
* Initialize callouts.
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i - 1].c_next = &callout[i];
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.6 2000/01/17 21:59:44 msaitoh Exp $ */
/* $NetBSD: machdep.c,v 1.7 2000/01/19 20:05:34 thorpej Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -91,7 +91,6 @@
#include <sys/reboot.h>
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/msgbuf.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.135 1999/12/14 17:51:21 thorpej Exp $ */
/* $NetBSD: machdep.c,v 1.136 2000/01/19 20:05:34 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -49,7 +49,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/callout.h>
#include <sys/clist.h>
#include <sys/conf.h>
#include <sys/exec.h>
@ -383,14 +382,6 @@ cpu_startup()
nmbclusters * mclbytes, VM_MAP_INTRSAFE,
FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.15 2000/01/19 02:52:18 msaitoh Exp $ */
/* $NetBSD: machdep.c,v 1.16 2000/01/19 20:05:35 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -43,7 +43,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.15 2000/01/19 02:52:18 msaitoh Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.16 2000/01/19 20:05:35 thorpej Exp $");
/* from: Utah Hdr: machdep.c 1.63 91/04/24 */
#include "opt_vr41x1.h"
@ -63,7 +63,6 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.15 2000/01/19 02:52:18 msaitoh Exp $")
#include <sys/reboot.h>
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/msgbuf.h>
@ -524,14 +523,6 @@ cpu_startup()
* map those pages.
*/
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.372 1999/12/21 12:34:11 drochner Exp $ */
/* $NetBSD: machdep.c,v 1.373 2000/01/19 20:05:35 thorpej Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -95,7 +95,6 @@
#include <sys/reboot.h>
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/msgbuf.h>
@ -356,13 +355,6 @@ cpu_startup()
mb_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
nmbclusters * mclbytes, VM_MAP_INTRSAFE, FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
/*
* XXX Buffer cache pages haven't yet been allocated, so
* XXX we need to account for those pages when printing

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.3 2000/01/19 02:52:18 msaitoh Exp $ */
/* $NetBSD: machdep.c,v 1.4 2000/01/19 20:05:37 thorpej Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.3 2000/01/19 02:52:18 msaitoh Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.4 2000/01/19 20:05:37 thorpej Exp $");
#include "opt_ddb.h"
@ -52,7 +52,6 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.3 2000/01/19 02:52:18 msaitoh Exp $");
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
@ -349,14 +348,6 @@ cpu_startup()
nmbclusters * mclbytes, VM_MAP_INTRSAFE,
FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.241 2000/01/19 02:52:18 msaitoh Exp $ */
/* $NetBSD: machdep.c,v 1.242 2000/01/19 20:05:37 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -95,7 +95,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/msgbuf.h>
@ -447,13 +446,6 @@ cpu_startup(void)
mb_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
nmbclusters * mclbytes, VM_MAP_INTRSAFE, FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i - 1].c_next = &callout[i];
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.64 2000/01/19 03:28:21 danw Exp $ */
/* $NetBSD: machdep.c,v 1.65 2000/01/19 20:05:43 thorpej Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -44,7 +44,6 @@
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/callout.h>
#include <sys/exec.h>
#include <sys/malloc.h>
#include <sys/map.h>
@ -561,13 +560,6 @@ cpu_startup()
* pool pages.
*/
/*
* Initialize callouts.
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i - 1].c_next = &callout[i];
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: mips_machdep.c,v 1.62 2000/01/09 08:01:54 shin Exp $ */
/* $NetBSD: mips_machdep.c,v 1.63 2000/01/19 20:05:43 thorpej Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -52,7 +52,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.62 2000/01/09 08:01:54 shin Exp $");
__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.63 2000/01/19 20:05:43 thorpej Exp $");
#include "opt_compat_netbsd.h"
#include "opt_compat_ultrix.h"
@ -66,7 +66,6 @@ __KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.62 2000/01/09 08:01:54 shin Exp $
#include <sys/proc.h>
#include <sys/buf.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/signal.h>
#include <sys/signalvar.h>
#include <sys/syscallargs.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.61 1999/12/04 21:20:53 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.62 2000/01/19 20:05:44 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -56,7 +56,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/msgbuf.h>
@ -453,14 +452,6 @@ cpu_startup()
nmbclusters * mclbytes, VM_MAP_INTRSAFE,
FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.2 1999/12/29 05:01:14 tsutsui Exp $ */
/* $NetBSD: machdep.c,v 1.3 2000/01/19 20:05:44 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -49,7 +49,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/callout.h>
#include <sys/conf.h>
#include <sys/kernel.h>
#include <sys/device.h>
@ -295,14 +294,6 @@ cpu_startup()
nmbclusters * mclbytes, VM_MAP_INTRSAFE,
FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.36 2000/01/19 02:52:19 msaitoh Exp $ */
/* $NetBSD: machdep.c,v 1.37 2000/01/19 20:05:44 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -43,7 +43,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.36 2000/01/19 02:52:19 msaitoh Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.37 2000/01/19 20:05:44 thorpej Exp $");
/* from: Utah Hdr: machdep.c 1.63 91/04/24 */
@ -61,7 +61,6 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.36 2000/01/19 02:52:19 msaitoh Exp $")
#include <sys/reboot.h>
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/msgbuf.h>
@ -480,14 +479,6 @@ cpu_startup()
* map those pages.
*/
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.28 1999/12/04 21:36:00 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.29 2000/01/19 20:05:45 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -57,7 +57,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
@ -393,14 +392,6 @@ cpu_startup()
nmbclusters * mclbytes, VM_MAP_INTRSAFE,
FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.50 2000/01/19 03:28:23 danw Exp $ */
/* $NetBSD: machdep.c,v 1.51 2000/01/19 20:05:45 thorpej Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -41,7 +41,6 @@
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/callout.h>
#include <sys/exec.h>
#include <sys/malloc.h>
#include <sys/map.h>
@ -470,13 +469,6 @@ cpu_startup()
* pool pages.
*/
/*
* Initialize callouts.
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i - 1].c_next = &callout[i];
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.107 1999/12/04 21:21:12 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.108 2000/01/19 20:05:46 thorpej Exp $ */
/*-
* Copyright (c) 1996 Matthias Pfaller.
@ -63,7 +63,6 @@
#include <sys/reboot.h>
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/msgbuf.h>
@ -299,13 +298,6 @@ cpu_startup()
UVM_PROT_READ|UVM_PROT_EXEC, TRUE) != KERN_SUCCESS)
panic("can't protect kernel text");
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.25 2000/01/19 02:52:20 msaitoh Exp $ */
/* $NetBSD: machdep.c,v 1.26 2000/01/19 20:05:46 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -55,7 +55,6 @@
#include <sys/reboot.h>
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/msgbuf.h>
@ -542,14 +541,6 @@ cpu_startup()
*/
mb_map = kmem_suballoc(kernel_map, &minaddr, &maxaddr,
VM_MBUF_SIZE, FALSE);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.161 2000/01/19 02:52:20 msaitoh Exp $ */
/* $NetBSD: machdep.c,v 1.162 2000/01/19 20:05:47 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.161 2000/01/19 02:52:20 msaitoh Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.162 2000/01/19 20:05:47 thorpej Exp $");
#include "fs_mfs.h"
#include "opt_ddb.h"
@ -53,7 +53,6 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.161 2000/01/19 02:52:20 msaitoh Exp $"
#include <sys/kernel.h>
#include <sys/buf.h>
#include <sys/reboot.h>
#include <sys/callout.h>
#include <sys/user.h>
#include <sys/mount.h>
#include <sys/kcore.h>
@ -484,14 +483,6 @@ cpu_startup()
* map those pages.
*/
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: sh3_machdep.c,v 1.2 1999/12/04 21:21:25 ragge Exp $ */
/* $NetBSD: sh3_machdep.c,v 1.3 2000/01/19 20:05:47 thorpej Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -79,7 +79,6 @@
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/callout.h>
#include <sys/exec.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
@ -203,13 +202,6 @@ sh3_startup()
mb_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
VM_MBUF_SIZE, FALSE, FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.159 1999/12/15 08:03:43 garbled Exp $ */
/* $NetBSD: machdep.c,v 1.160 2000/01/19 20:05:48 thorpej Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -99,7 +99,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/mount.h>
@ -292,14 +291,6 @@ cpu_startup()
mb_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
nmbclusters * mclbytes, VM_MAP_INTRSAFE, FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.55 1999/12/04 21:21:35 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.56 2000/01/19 20:05:48 thorpej Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -98,7 +98,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/mount.h>
@ -280,13 +279,6 @@ printf("cpu_startup: allocsys %ld, rounded %ld\n", sz, round_page(sz));
*/
mb_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
nmbclusters * mclbytes, VM_MAP_INTRSAFE, FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.135 1999/12/04 21:21:43 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.136 2000/01/19 20:05:49 thorpej Exp $ */
/*
* Copyright (c) 1994, 1995 Gordon W. Ross
@ -55,7 +55,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
@ -289,14 +288,6 @@ cpu_startup()
nmbclusters * mclbytes, VM_MAP_INTRSAFE,
FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.54 1999/12/04 21:21:45 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.55 2000/01/19 20:05:49 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -53,7 +53,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
@ -284,14 +283,6 @@ cpu_startup()
nmbclusters * mclbytes, VM_MAP_INTRSAFE,
FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.92 2000/01/16 12:43:52 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.93 2000/01/19 20:05:50 thorpej Exp $ */
/*
* Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden.
@ -65,7 +65,6 @@
#include <sys/mbuf.h>
#include <sys/reboot.h>
#include <sys/conf.h>
#include <sys/callout.h>
#include <sys/device.h>
#include <sys/exec.h>
#include <sys/mount.h>
@ -235,15 +234,6 @@ cpu_startup()
exec_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
NCARGS, VM_MAP_PAGEABLE, FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i - 1].c_next = &callout[i];
callout[i - 1].c_next = NULL;
format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
printf("avail memory = %s\n", pbuf);
format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.75 2000/01/17 16:17:32 minoura Exp $ */
/* $NetBSD: machdep.c,v 1.76 2000/01/19 20:05:50 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -66,7 +66,6 @@
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/clist.h>
#include <sys/callout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/msgbuf.h>
@ -338,14 +337,6 @@ cpu_startup()
nmbclusters * mclbytes, VM_MAP_INTRSAFE,
FALSE, NULL);
/*
* Initialize callouts
*/
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#ifdef DEBUG
pmapdebug = opmapdebug;
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: init_main.c,v 1.161 2000/01/01 05:00:03 mycroft Exp $ */
/* $NetBSD: init_main.c,v 1.162 2000/01/19 20:05:50 thorpej Exp $ */
/*
* Copyright (c) 1995 Christopher G. Demetriou. All rights reserved.
@ -54,6 +54,7 @@
#include <sys/file.h>
#include <sys/errno.h>
#include <sys/exec.h>
#include <sys/callout.h>
#include <sys/kernel.h>
#include <sys/mount.h>
#include <sys/map.h>
@ -206,6 +207,9 @@ main()
/* Do machine-dependent initialization. */
cpu_startup();
/* Initialize callouts. */
callout_startup();
/*
* Initialize mbuf's. Do this now because we might attempt to
* allocate mbufs or mbuf clusters during autoconfiguration.

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_clock.c,v 1.50 1999/09/06 20:44:02 sommerfeld Exp $ */
/* $NetBSD: kern_clock.c,v 1.51 2000/01/19 20:05:51 thorpej Exp $ */
/*-
* Copyright (c) 1982, 1986, 1991, 1993
@ -754,6 +754,22 @@ softclock()
splx(s);
}
/*
* callout_startup:
*
* Initialize the callout freelist.
*/
void
callout_startup()
{
int i;
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
}
/*
* timeout --
* Execute a function after a specified length of time.

View File

@ -1,4 +1,4 @@
/* $NetBSD: callout.h,v 1.11 1997/01/22 07:09:06 mikel Exp $ */
/* $NetBSD: callout.h,v 1.12 2000/01/19 20:05:51 thorpej Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -52,6 +52,8 @@ struct callout {
#ifdef _KERNEL
struct callout *callfree, *callout, calltodo;
int ncallout;
void callout_startup __P((void));
#endif
#endif /* !_SYS_CALLOUT_H_ */