summaryrefslogtreecommitdiffstats
path: root/sys/kern/sys_pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/sys_pipe.c')
-rw-r--r--sys/kern/sys_pipe.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c
index 39bc68dfc84..4543cbe9678 100644
--- a/sys/kern/sys_pipe.c
+++ b/sys/kern/sys_pipe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sys_pipe.c,v 1.40 2001/11/06 19:53:20 miod Exp $ */
+/* $OpenBSD: sys_pipe.c,v 1.41 2002/01/23 00:39:47 art Exp $ */
/*
* Copyright (c) 1996 John S. Dyson
@@ -846,7 +846,6 @@ void
pipe_init()
{
pool_init(&pipe_pool, sizeof(struct pipe), 0, 0, 0, "pipepl",
- 0, pool_page_alloc_nointr, pool_page_free_nointr,
- M_PIPE);
+ &pool_allocator_nointr);
}