Reenable the page zeroing thread on MP m88k kernels.
authormiod <miod@openbsd.org>
Mon, 18 May 2015 04:07:26 +0000 (04:07 +0000)
committermiod <miod@openbsd.org>
Mon, 18 May 2015 04:07:26 +0000 (04:07 +0000)
sys/kern/init_main.c

index 6c71f38..a948f38 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: init_main.c,v 1.239 2015/05/05 02:13:46 guenther Exp $        */
+/*     $OpenBSD: init_main.c,v 1.240 2015/05/18 04:07:26 miod Exp $    */
 /*     $NetBSD: init_main.c,v 1.84.4.1 1996/06/02 09:08:06 mrg Exp $   */
 
 /*
@@ -525,8 +525,7 @@ main(void *framep)
        if (kthread_create(uvm_aiodone_daemon, NULL, NULL, "aiodoned"))
                panic("fork aiodoned");
 
-#if !defined(__hppa__) && \
-    !(defined(__m88k__) && defined(MULTIPROCESSOR))
+#if !defined(__hppa__)
        /* Create the page zeroing kernel thread. */
        if (kthread_create(uvm_pagezero_thread, NULL, NULL, "zerothread"))
                panic("fork zerothread");