summaryrefslogtreecommitdiff
path: root/sys/kern/init_main.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2024-02-14 06:17:52 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2024-02-14 06:17:52 +0000
commit244fa4c3b8d1a366cc7eed5156db8d73b5472bac (patch)
tree617c26b3786214d6d750214d763c644b1de46d36 /sys/kern/init_main.c
parentaba5cd020299c732d0c1705b887349c639988bad (diff)
Enable the pool gc thread on m88k MULTIPROCESSOR kernels now that
pmap_unmap_direct() has been fixed; also tested by aoyama@
Diffstat (limited to 'sys/kern/init_main.c')
-rw-r--r--sys/kern/init_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index e1d4cea4ce3..b4816b2e9a0 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: init_main.c,v 1.324 2024/01/01 07:00:18 jsg Exp $ */
+/* $OpenBSD: init_main.c,v 1.325 2024/02/14 06:17:51 miod Exp $ */
/* $NetBSD: init_main.c,v 1.84.4.1 1996/06/02 09:08:06 mrg Exp $ */
/*
@@ -536,7 +536,7 @@ main(void *framep)
/*
* Start the idle pool page garbage collector
*/
-#if !(defined(__m88k__) && defined(MULTIPROCESSOR)) /* XXX */
+#if defined(MULTIPROCESSOR)
pool_gc_pages(NULL);
#endif