From b171797731883a9e7c7bf678497a04d853d9e3a6 Mon Sep 17 00:00:00 2001 From: ad Date: Mon, 12 Mar 2007 19:05:05 +0000 Subject: [PATCH] Pass an ipl argument to pool_init/POOL_INIT to be used when initializing the pool's lock. --- sys/kern/sys_pipe.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c index 38b57f7a3170..b47be82bbbca 100644 --- a/sys/kern/sys_pipe.c +++ b/sys/kern/sys_pipe.c @@ -1,4 +1,4 @@ -/* $NetBSD: sys_pipe.c,v 1.80 2007/03/12 16:20:53 ad Exp $ */ +/* $NetBSD: sys_pipe.c,v 1.81 2007/03/12 19:05:05 ad Exp $ */ /*- * Copyright (c) 2003, 2007 The NetBSD Foundation, Inc. @@ -83,7 +83,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.80 2007/03/12 16:20:53 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.81 2007/03/12 19:05:05 ad Exp $"); #include #include @@ -191,7 +191,7 @@ static void pipe_loan_free(struct pipe *); #endif /* PIPE_NODIRECT */ static POOL_INIT(pipe_pool, sizeof(struct pipe), 0, 0, 0, "pipepl", - &pool_allocator_nointr); + &pool_allocator_nointr, IPL_NONE); /* * The pipe system call for the DTYPE_PIPE type of pipes