diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2015-04-12 11:12:10 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2015-04-12 11:12:10 +0000 |
commit | 75c14bd58731cc7760e2a881fea1d26fda3dd5fb (patch) | |
tree | e113c53ce6e751b6b4bc4573f8b592061e0821e6 | |
parent | f7fc55c86a75c4aff3235c37c6e3bc266d44396b (diff) |
disable the pool gc. there are reports of strange lockups on various mp
archs and this is the only interesting diff in the window.
-rw-r--r-- | sys/kern/init_main.c | 4 |
1 files changed, 3 insertions, 1 deletions
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 |