summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-12-02 17:11:20 +0000
committerbde <bde@FreeBSD.org>1995-12-02 17:11:20 +0000
commit338d20055d0ef8817b63172a636095dc2bc75fe0 (patch)
treefd75b5d1a31b2b8f8a3ddd8f23671ac1ec898883 /sys/kern
parent5f43488dec8aabd1cd70951ccc1cbc31b2640ef2 (diff)
downloadFreeBSD-src-338d20055d0ef8817b63172a636095dc2bc75fe0.zip
FreeBSD-src-338d20055d0ef8817b63172a636095dc2bc75fe0.tar.gz
Finished (?) cleaning up sysinit stuff.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/init_main.c47
-rw-r--r--sys/kern/kern_clock.c13
-rw-r--r--sys/kern/kern_malloc.c11
-rw-r--r--sys/kern/kern_synch.c13
-rw-r--r--sys/kern/kern_tc.c13
-rw-r--r--sys/kern/kern_timeout.c13
-rw-r--r--sys/kern/subr_prof.c6
-rw-r--r--sys/kern/uipc_domain.c11
-rw-r--r--sys/kern/uipc_mbuf.c11
-rw-r--r--sys/kern/vfs_bio.c12
-rw-r--r--sys/kern/vfs_conf.c9
-rw-r--r--sys/kern/vfs_init.c12
-rw-r--r--sys/kern/vfs_mount.c9
13 files changed, 64 insertions, 116 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index 59eecdb..62ed08f 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* @(#)init_main.c 8.9 (Berkeley) 1/21/94
- * $Id: init_main.c,v 1.31 1995/10/08 00:05:59 swallace Exp $
+ * $Id: init_main.c,v 1.32 1995/11/28 07:29:59 bde Exp $
*/
#include <sys/param.h>
@@ -223,9 +223,9 @@ main(framep)
/* ARGSUSED*/
void
kproc_start(udata)
- void *udata; /* pointer to a 'kproc_desc' ? */
+ void *udata;
{
- struct kproc_desc *kp = (struct kproc_desc *)udata;
+ struct kproc_desc *kp = udata;
struct proc *p = curproc;
/* save a global descriptor, if desired*/
@@ -242,7 +242,7 @@ kproc_start(udata)
(*kp->func)();
/* NOTREACHED */
- panic( "kproc_start: %s", kp->arg0);
+ panic("kproc_start: %s", kp->arg0);
}
@@ -279,8 +279,7 @@ print_caddr_t(data)
{
printf("%s", (char *)data);
}
-SYSINIT(announce, SI_SUB_COPYRIGHT, SI_ORDER_FIRST, print_caddr_t,
- copyright)
+SYSINIT(announce, SI_SUB_COPYRIGHT, SI_ORDER_FIRST, print_caddr_t, copyright)
/*
@@ -297,10 +296,10 @@ SYSINIT(announce, SI_SUB_COPYRIGHT, SI_ORDER_FIRST, print_caddr_t,
***************************************************************************
*/
/* ARGSUSED*/
-void proc0_init __P((void *udata));
+void proc0_init __P((void *dummy));
void
-proc0_init(udata)
- void *udata; /* not used*/
+proc0_init(dummy)
+ void *dummy;
{
register struct proc *p;
register struct filedesc0 *fdp;
@@ -400,10 +399,10 @@ proc0_init(udata)
SYSINIT(p0init, SI_SUB_INTRINSIC, SI_ORDER_FIRST, proc0_init, NULL)
/* ARGSUSED*/
-void proc0_post __P((void *udata));
+void proc0_post __P((void *dummy));
void
-proc0_post(udata)
- void *udata; /* not used*/
+proc0_post(dummy)
+ void *dummy;
{
/*
* Now can look at time, having had a chance to verify the time
@@ -430,10 +429,10 @@ SYSINIT(p0post, SI_SUB_INTRINSIC_POST, SI_ORDER_FIRST, proc0_post, NULL)
***************************************************************************
*/
/* ARGSUSED*/
-void sched_setup __P((void *udata));
+void sched_setup __P((void *dummy));
void
-sched_setup(udata)
- void *udata; /* not used*/
+sched_setup(dummy)
+ void *dummy;
{
/* Kick off timeout driven events by calling first time. */
roundrobin(NULL);
@@ -442,10 +441,10 @@ sched_setup(udata)
SYSINIT(sched_setup, SI_SUB_KICK_SCHEDULER, SI_ORDER_FIRST, sched_setup, NULL)
/* ARGSUSED*/
-void xxx_vfs_mountroot __P((void *udata));
+void xxx_vfs_mountroot __P((void *dummy));
void
-xxx_vfs_mountroot(udata)
- void *udata; /* not used*/
+xxx_vfs_mountroot(dummy)
+ void *dummy;
{
/* Mount the root file system. */
if ((*mountroot)(mountrootvfsops))
@@ -454,10 +453,10 @@ xxx_vfs_mountroot(udata)
SYSINIT(mountroot, SI_SUB_ROOT, SI_ORDER_FIRST, xxx_vfs_mountroot, NULL)
/* ARGSUSED*/
-void xxx_vfs_root_fdtab __P((void *udata));
+void xxx_vfs_root_fdtab __P((void *dummy));
void
-xxx_vfs_root_fdtab(udata)
- void *udata; /* not used*/
+xxx_vfs_root_fdtab(dummy)
+ void *dummy;
{
register struct filedesc0 *fdp = &filedesc0;
@@ -485,7 +484,7 @@ SYSINIT(retrofit, SI_SUB_ROOT_FDTAB, SI_ORDER_FIRST, xxx_vfs_root_fdtab, NULL)
***************************************************************************
*/
-static void kthread_init __P((void *udata));
+static void kthread_init __P((void *dummy));
SYSINIT_KT(init,SI_SUB_KTHREAD_INIT, SI_ORDER_FIRST, kthread_init, NULL)
@@ -493,8 +492,8 @@ static void start_init __P((struct proc *p, void *framep));
/* ARGSUSED*/
static void
-kthread_init(udata)
- void *udata; /* not used*/
+kthread_init(dummy)
+ void *dummy;
{
/* Create process 1 (init(8)). */
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c
index 581ba5a..e604eee 100644
--- a/sys/kern/kern_clock.c
+++ b/sys/kern/kern_clock.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
- * $Id: kern_clock.c,v 1.18 1995/11/08 08:45:58 phk Exp $
+ * $Id: kern_clock.c,v 1.19 1995/11/12 19:51:48 phk Exp $
*/
/* Portions of this software are covered by the following: */
@@ -75,14 +75,9 @@
#include <sys/gmon.h>
#endif
-/*
- * System initialization
- */
-
-static void initclocks __P((void *udata));
+static void initclocks __P((void *dummy));
SYSINIT(clocks, SI_SUB_CLOCKS, SI_ORDER_FIRST, initclocks, NULL)
-
/* Does anybody else really care about these? */
struct callout *callfree, *callout, calltodo;
@@ -393,8 +388,8 @@ hardupdate(offset)
*/
/* ARGSUSED*/
static void
-initclocks(udata)
- void *udata; /* not used*/
+initclocks(dummy)
+ void *dummy;
{
register int i;
diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c
index dba7930..f317006 100644
--- a/sys/kern/kern_malloc.c
+++ b/sys/kern/kern_malloc.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)kern_malloc.c 8.3 (Berkeley) 1/4/94
- * $Id: kern_malloc.c,v 1.13 1995/08/28 09:18:44 julian Exp $
+ * $Id: kern_malloc.c,v 1.14 1995/09/09 18:10:03 davidg Exp $
*/
#include <sys/param.h>
@@ -43,14 +43,9 @@
#include <vm/vm.h>
#include <vm/vm_kern.h>
-/*
- * System initialization
- */
-
static void kmeminit __P((void *));
SYSINIT(kmem, SI_SUB_KMEM, SI_ORDER_FIRST, kmeminit, NULL)
-
struct kmembuckets bucket[MINBUCKET + 16];
struct kmemstats kmemstats[M_LAST];
struct kmemusage *kmemusage;
@@ -366,8 +361,8 @@ free(addr, type)
*/
/* ARGSUSED*/
static void
-kmeminit(udata)
- void *udata; /* not used*/
+kmeminit(dummy)
+ void *dummy;
{
register long indx;
int npg;
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c
index 1d0603e..a6dbfa9 100644
--- a/sys/kern/kern_synch.c
+++ b/sys/kern/kern_synch.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_synch.c 8.6 (Berkeley) 1/21/94
- * $Id: kern_synch.c,v 1.12 1995/08/28 09:18:45 julian Exp $
+ * $Id: kern_synch.c,v 1.13 1995/09/09 18:10:04 davidg Exp $
*/
#include <sys/param.h>
@@ -54,16 +54,9 @@
#include <machine/cpu.h>
-
-/*
- * System initialization
- */
-
static void rqinit __P((void *));
SYSINIT(runqueue, SI_SUB_RUN_QUEUE, SI_ORDER_FIRST, rqinit, NULL)
-
-
u_char curpriority; /* usrpri of curproc */
int lbolt; /* once a second sleep address */
@@ -614,8 +607,8 @@ mi_switch()
*/
/* ARGSUSED*/
static void
-rqinit(udata)
- void *udata; /* not used*/
+rqinit(dummy)
+ void *dummy;
{
register int i;
diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c
index 581ba5a..e604eee 100644
--- a/sys/kern/kern_tc.c
+++ b/sys/kern/kern_tc.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
- * $Id: kern_clock.c,v 1.18 1995/11/08 08:45:58 phk Exp $
+ * $Id: kern_clock.c,v 1.19 1995/11/12 19:51:48 phk Exp $
*/
/* Portions of this software are covered by the following: */
@@ -75,14 +75,9 @@
#include <sys/gmon.h>
#endif
-/*
- * System initialization
- */
-
-static void initclocks __P((void *udata));
+static void initclocks __P((void *dummy));
SYSINIT(clocks, SI_SUB_CLOCKS, SI_ORDER_FIRST, initclocks, NULL)
-
/* Does anybody else really care about these? */
struct callout *callfree, *callout, calltodo;
@@ -393,8 +388,8 @@ hardupdate(offset)
*/
/* ARGSUSED*/
static void
-initclocks(udata)
- void *udata; /* not used*/
+initclocks(dummy)
+ void *dummy;
{
register int i;
diff --git a/sys/kern/kern_timeout.c b/sys/kern/kern_timeout.c
index 581ba5a..e604eee 100644
--- a/sys/kern/kern_timeout.c
+++ b/sys/kern/kern_timeout.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
- * $Id: kern_clock.c,v 1.18 1995/11/08 08:45:58 phk Exp $
+ * $Id: kern_clock.c,v 1.19 1995/11/12 19:51:48 phk Exp $
*/
/* Portions of this software are covered by the following: */
@@ -75,14 +75,9 @@
#include <sys/gmon.h>
#endif
-/*
- * System initialization
- */
-
-static void initclocks __P((void *udata));
+static void initclocks __P((void *dummy));
SYSINIT(clocks, SI_SUB_CLOCKS, SI_ORDER_FIRST, initclocks, NULL)
-
/* Does anybody else really care about these? */
struct callout *callfree, *callout, calltodo;
@@ -393,8 +388,8 @@ hardupdate(offset)
*/
/* ARGSUSED*/
static void
-initclocks(udata)
- void *udata; /* not used*/
+initclocks(dummy)
+ void *dummy;
{
register int i;
diff --git a/sys/kern/subr_prof.c b/sys/kern/subr_prof.c
index 4b395aa..54216df 100644
--- a/sys/kern/subr_prof.c
+++ b/sys/kern/subr_prof.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)subr_prof.c 8.3 (Berkeley) 9/23/93
- * $Id: subr_prof.c,v 1.10 1995/11/12 06:43:04 bde Exp $
+ * $Id: subr_prof.c,v 1.11 1995/11/20 12:42:06 phk Exp $
*/
#include <sys/param.h>
@@ -58,8 +58,8 @@ extern char btext[];
extern char etext[];
static void
-kmstartup(udata)
- void *udata;
+kmstartup(dummy)
+ void *dummy;
{
char *cp;
struct gmonparam *p = &_gmonparam;
diff --git a/sys/kern/uipc_domain.c b/sys/kern/uipc_domain.c
index e32eaeb..f6fac9a 100644
--- a/sys/kern/uipc_domain.c
+++ b/sys/kern/uipc_domain.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)uipc_domain.c 8.2 (Berkeley) 10/18/93
- * $Id: uipc_domain.c,v 1.9 1995/09/09 18:10:11 davidg Exp $
+ * $Id: uipc_domain.c,v 1.10 1995/11/16 18:59:50 phk Exp $
*/
#include <sys/param.h>
@@ -64,7 +64,6 @@ SYSINIT(splimp, SI_SUB_PROTO_BEGIN, SI_ORDER_FIRST, kludge_splimp, &x_save_spl)
SYSINIT(domain, SI_SUB_PROTO_DOMAIN, SI_ORDER_FIRST, domaininit, NULL)
SYSINIT(splx, SI_SUB_PROTO_END, SI_ORDER_FIRST, kludge_splx, &x_save_spl)
-
static void pffasttimo __P((void *));
static void pfslowtimo __P((void *));
@@ -79,8 +78,8 @@ extern struct linker_set domain_set;
/* ARGSUSED*/
static void
-domaininit(udata)
- void *udata; /* not used*/
+domaininit(dummy)
+ void *dummy;
{
register struct domain *dp, **dpp;
register struct protosw *pr;
@@ -130,7 +129,7 @@ static void
kludge_splimp(udata)
void *udata;
{
- int *savesplp = (int *)udata;
+ int *savesplp = udata;
*savesplp = splimp();
}
@@ -139,7 +138,7 @@ static void
kludge_splx(udata)
void *udata;
{
- int *savesplp = (int *)udata;
+ int *savesplp = udata;
splx( *savesplp);
}
diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c
index d180cac..b7cef67 100644
--- a/sys/kern/uipc_mbuf.c
+++ b/sys/kern/uipc_mbuf.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)uipc_mbuf.c 8.2 (Berkeley) 1/4/94
- * $Id: uipc_mbuf.c,v 1.12 1995/09/09 18:10:12 davidg Exp $
+ * $Id: uipc_mbuf.c,v 1.13 1995/10/29 15:31:08 phk Exp $
*/
#include <sys/param.h>
@@ -48,14 +48,9 @@
#include <vm/vm.h>
#include <vm/vm_kern.h>
-/*
- * System initialization
- */
-
static void mbinit __P((void *));
SYSINIT(mbuf, SI_SUB_MBUF, SI_ORDER_FIRST, mbinit, NULL)
-
struct mbuf *mbutl;
char *mclrefcnt;
struct mbstat mbstat;
@@ -67,8 +62,8 @@ int max_datalen;
/* ARGSUSED*/
static void
-mbinit(udata)
- void *udata; /* not used*/
+mbinit(dummy)
+ void *dummy;
{
int s;
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
index 8a7219a..522d016 100644
--- a/sys/kern/vfs_bio.c
+++ b/sys/kern/vfs_bio.c
@@ -18,7 +18,7 @@
* 5. Modifications may be freely made to this file if the above conditions
* are met.
*
- * $Id: vfs_bio.c,v 1.70 1995/11/18 23:33:48 dyson Exp $
+ * $Id: vfs_bio.c,v 1.71 1995/11/19 19:54:22 dyson Exp $
*/
/*
@@ -52,13 +52,8 @@
#include <miscfs/specfs/specdev.h>
-/*
- * System initialization
- */
-
static void vfs_update __P((void));
struct proc *updateproc;
-
static struct kproc_desc up_kp = {
"update",
vfs_update,
@@ -66,7 +61,6 @@ static struct kproc_desc up_kp = {
};
SYSINIT_KT(update, SI_SUB_KTHREAD_UPDATE, SI_ORDER_FIRST, kproc_start, &up_kp)
-
struct buf *buf; /* buffer header pool */
struct swqueue bswlist;
@@ -1348,10 +1342,10 @@ count_lock_queue()
int vfs_update_interval = 30;
-void
+static void
vfs_update()
{
- (void) spl0();
+ (void) spl0(); /* XXX redundant? wrong place? */
while (1) {
tsleep(&vfs_update_wakeup, PRIBIO, "update",
hz * vfs_update_interval);
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c
index ba2a229..22d08fc 100644
--- a/sys/kern/vfs_conf.c
+++ b/sys/kern/vfs_conf.c
@@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94
- * $Id: vfs_conf.c,v 1.9 1995/09/09 18:10:15 davidg Exp $
+ * $Id: vfs_conf.c,v 1.10 1995/10/29 15:31:25 phk Exp $
*/
/*
@@ -98,7 +98,7 @@ struct vfsops *mountrootvfsops;
*/
int
vfs_mountroot(data)
- void *data; /* file system function table*/
+ void *data;
{
struct mount *mp;
u_int size;
@@ -167,8 +167,3 @@ error_1: /* lock error*/
success:
return( err);
}
-
-
-/*
- * EOF -- This file has not been truncated.
- */
diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c
index efbb5e4..af3fde2 100644
--- a/sys/kern/vfs_init.c
+++ b/sys/kern/vfs_init.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_init.c 8.3 (Berkeley) 1/4/94
- * $Id: vfs_init.c,v 1.13 1995/11/09 08:13:51 bde Exp $
+ * $Id: vfs_init.c,v 1.14 1995/11/20 12:42:09 phk Exp $
*/
@@ -56,13 +56,11 @@
#include <vm/vm.h>
#include <sys/sysctl.h>
-/*
- * System initialization
- */
-
static void vfsinit __P((void *));
SYSINIT(vfs, SI_SUB_VFS, SI_ORDER_FIRST, vfsinit, NULL)
+void vfs_op_init __P((void));
+
/*
* Sigh, such primitive tools are these...
*/
@@ -239,8 +237,8 @@ struct vattr va_null;
*/
/* ARGSUSED*/
static void
-vfsinit(udata)
- void *udata; /* not used*/
+vfsinit(dummy)
+ void *dummy;
{
struct vfsops **vfsp;
struct vfsconf **vfc;
diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c
index ba2a229..22d08fc 100644
--- a/sys/kern/vfs_mount.c
+++ b/sys/kern/vfs_mount.c
@@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94
- * $Id: vfs_conf.c,v 1.9 1995/09/09 18:10:15 davidg Exp $
+ * $Id: vfs_conf.c,v 1.10 1995/10/29 15:31:25 phk Exp $
*/
/*
@@ -98,7 +98,7 @@ struct vfsops *mountrootvfsops;
*/
int
vfs_mountroot(data)
- void *data; /* file system function table*/
+ void *data;
{
struct mount *mp;
u_int size;
@@ -167,8 +167,3 @@ error_1: /* lock error*/
success:
return( err);
}
-
-
-/*
- * EOF -- This file has not been truncated.
- */
OpenPOWER on IntegriCloud