diff options
author | 2015-06-24 03:42:08 +0000 | |
---|---|---|
committer | 2015-06-24 03:42:08 +0000 | |
commit | d0a855aed83fee64e7736aba6eabbe4c8ea42b22 (patch) | |
tree | a667ae4c3edf24a3ba500d1086ce5777f2523a03 | |
parent | Apply normal handling to atfd+path args to chflagsat(2) (diff) | |
download | wireguard-openbsd-d0a855aed83fee64e7736aba6eabbe4c8ea42b22.tar.xz wireguard-openbsd-d0a855aed83fee64e7736aba6eabbe4c8ea42b22.zip |
reenable the pool gc task.
the problems it tickled by working outside the biglock on archs
with mutex and clock interaction have been fixed, as evidenced by
the softnet taskq.
ok deraadt@
-rw-r--r-- | sys/kern/init_main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index a948f38017a..9b4cdf436bf 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init_main.c,v 1.240 2015/05/18 04:07:26 miod Exp $ */ +/* $OpenBSD: init_main.c,v 1.241 2015/06/24 03:42:08 dlg Exp $ */ /* $NetBSD: init_main.c,v 1.84.4.1 1996/06/02 09:08:06 mrg Exp $ */ /* @@ -551,9 +551,7 @@ main(void *framep) /* * Start the idle pool page garbage collector */ -#if notyet pool_gc_pages(NULL); -#endif /* * proc0: nothing to do, back to sleep |