Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/kern/init_main.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/kern/init_main.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.184 retrieving revision 1.185 diff -u -p -r1.184 -r1.185 --- src/sys/kern/init_main.c 2000/11/21 00:37:56 1.184 +++ src/sys/kern/init_main.c 2000/11/27 08:39:43 1.185 @@ -1,4 +1,4 @@ -/* $NetBSD: init_main.c,v 1.184 2000/11/21 00:37:56 jdolecek Exp $ */ +/* $NetBSD: init_main.c,v 1.185 2000/11/27 08:39:43 chs Exp $ */ /* * Copyright (c) 1995 Christopher G. Demetriou. All rights reserved. @@ -323,6 +323,8 @@ main(void) /* Configure the system hardware. This will enable interrupts. */ configure(); + ubc_init(); /* must be after autoconfig */ + /* Lock the kernel on behalf of proc0. */ KERNEL_PROC_LOCK(p); @@ -472,6 +474,10 @@ main(void) if (kthread_create1(sched_sync, NULL, NULL, "ioflush")) panic("fork syncer"); + /* Create the aiodone daemon kernel thread. */ + if (kthread_create1(uvm_aiodone_daemon, NULL, NULL, "aiodoned")) + panic("fork aiodoned"); + #if defined(MULTIPROCESSOR) /* Boot the secondary processors. */ cpu_boot_secondary_processors();