diff options
| author | 2015-04-12 11:12:09 +0000 | |
|---|---|---|
| committer | 2015-04-12 11:12:09 +0000 | |
| commit | 56e3d6d0b876d4a60b6ced45cc249f616623a91c (patch) | |
| tree | 0f18eb0d05603ec0c890b9afc4175d29befdb53f /sys/kern/init_main.c | |
| parent | pull structs and macros that are only used in hfsc.c out of the header (diff) | |
| download | wireguard-openbsd-56e3d6d0b876d4a60b6ced45cc249f616623a91c.tar.xz wireguard-openbsd-56e3d6d0b876d4a60b6ced45cc249f616623a91c.zip | |
disable the pool gc. there are reports of strange lockups on various mp
archs and this is the only interesting diff in the window.
Diffstat (limited to 'sys/kern/init_main.c')
| -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 |
