Enable the pool gc thread on m88k MULTIPROCESSOR kernels now that
authormiod <miod@openbsd.org>
Wed, 14 Feb 2024 06:17:51 +0000 (06:17 +0000)
committermiod <miod@openbsd.org>
Wed, 14 Feb 2024 06:17:51 +0000 (06:17 +0000)
pmap_unmap_direct() has been fixed; also tested by aoyama@

sys/kern/init_main.c

index e1d4cea..b4816b2 100644 (file)
@@ -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