summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_resource.c
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2014-12-19 05:59:21 +0000
committertedu <tedu@openbsd.org>2014-12-19 05:59:21 +0000
commitfbab5b6cdee93fd0818b09c6201db020bd35a0fd (patch)
tree39a72a7aa63cbcbc57b980b1f4d8b345ffcbc99b /sys/kern/kern_resource.c
parentif you really must look inside the pool to decide if you've called (diff)
downloadwireguard-openbsd-fbab5b6cdee93fd0818b09c6201db020bd35a0fd.tar.xz
wireguard-openbsd-fbab5b6cdee93fd0818b09c6201db020bd35a0fd.zip
start retiring the nointr allocator. specify PR_WAITOK as a flag as a
marker for which pools are not interrupt safe. ok dlg
Diffstat (limited to 'sys/kern/kern_resource.c')
-rw-r--r--sys/kern/kern_resource.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_resource.c b/sys/kern/kern_resource.c
index 4765850002b..29b8b089e04 100644
--- a/sys/kern/kern_resource.c
+++ b/sys/kern/kern_resource.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_resource.c,v 1.52 2014/12/10 02:44:47 tedu Exp $ */
+/* $OpenBSD: kern_resource.c,v 1.53 2014/12/19 05:59:21 tedu Exp $ */
/* $NetBSD: kern_resource.c,v 1.38 1996/10/23 07:19:38 matthias Exp $ */
/*-
@@ -505,8 +505,8 @@ limcopy(struct plimit *lim)
static int initialized;
if (!initialized) {
- pool_init(&plimit_pool, sizeof(struct plimit), 0, 0, 0,
- "plimitpl", &pool_allocator_nointr);
+ pool_init(&plimit_pool, sizeof(struct plimit), 0, 0, PR_WAITOK,
+ "plimitpl", NULL);
initialized = 1;
}