From: dlg Date: Thu, 25 Aug 2016 00:06:44 +0000 (+0000) Subject: pool_setipl for udf X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=42379b2643cfbdafbb51f8e8e0379ce75b21822c;p=openbsd pool_setipl for udf ok phessler@ krw@ --- diff --git a/sys/isofs/udf/udf_vfsops.c b/sys/isofs/udf/udf_vfsops.c index 7bd25d816a1..cfb98a3df1d 100644 --- a/sys/isofs/udf/udf_vfsops.c +++ b/sys/isofs/udf/udf_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udf_vfsops.c,v 1.53 2016/08/13 20:53:17 guenther Exp $ */ +/* $OpenBSD: udf_vfsops.c,v 1.54 2016/08/25 00:06:44 dlg Exp $ */ /* * Copyright (c) 2001, 2002 Scott Long @@ -104,10 +104,13 @@ udf_init(struct vfsconf *foo) { pool_init(&udf_trans_pool, MAXNAMLEN * sizeof(unicode_t), 0, 0, PR_WAITOK, "udftrpl", NULL); + pool_setipl(&udf_trans_pool, IPL_NONE); pool_init(&unode_pool, sizeof(struct unode), 0, 0, PR_WAITOK, "udfndpl", NULL); + pool_setipl(&unode_pool, IPL_NONE); pool_init(&udf_ds_pool, sizeof(struct udf_dirstream), 0, 0, PR_WAITOK, "udfdspl", NULL); + pool_setipl(&udf_ds_pool, IPL_NONE); return (0); }