From: miod Date: Mon, 18 May 2015 04:07:26 +0000 (+0000) Subject: Reenable the page zeroing thread on MP m88k kernels. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=2da30a36da14f5172bd3d8b6064c6d610dc1bad7;p=openbsd Reenable the page zeroing thread on MP m88k kernels. --- 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");