From 56e3d6d0b876d4a60b6ced45cc249f616623a91c Mon Sep 17 00:00:00 2001 From: dlg Date: Sun, 12 Apr 2015 11:12:09 +0000 Subject: [PATCH] disable the pool gc. there are reports of strange lockups on various mp archs and this is the only interesting diff in the window. --- sys/kern/init_main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 3446df6f8ec..37b08bf569d 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init_main.c,v 1.236 2015/04/07 11:07:56 dlg Exp $ */ +/* $OpenBSD: init_main.c,v 1.237 2015/04/12 11:12:09 dlg Exp $ */ /* $NetBSD: init_main.c,v 1.84.4.1 1996/06/02 09:08:06 mrg Exp $ */ /* @@ -553,7 +553,9 @@ main(void *framep) /* * Start the idle pool page garbage collector */ +#if notyet pool_gc_pages(NULL); +#endif /* * proc0: nothing to do, back to sleep -- 2.20.1