diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2015-05-18 04:07:27 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2015-05-18 04:07:27 +0000 |
commit | ce59391e9043d35265c2431f46b84ea6a3042915 (patch) | |
tree | a0b5dc74db37dfe68e92a1a893949715e08d6d32 | |
parent | 95b91a3039d87b44bbbab45c768a15d48048aef7 (diff) |
Reenable the page zeroing thread on MP m88k kernels.
-rw-r--r-- | sys/kern/init_main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 6c71f382e93..a948f38017a 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -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"); |