summaryrefslogtreecommitdiff
path: root/sys/isofs
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2016-08-25 00:06:45 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2016-08-25 00:06:45 +0000
commit016358686ed4fbcdbd8a5aa0275302531f52b82d (patch)
treebf19883505c389c20f0bc33f702628c980a6db2c /sys/isofs
parentdf835daa4f7f925cb63b1198f0b773432b9528dd (diff)
pool_setipl for udf
ok phessler@ krw@
Diffstat (limited to 'sys/isofs')
-rw-r--r--sys/isofs/udf/udf_vfsops.c5
1 files changed, 4 insertions, 1 deletions
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 <scottl@freebsd.org>
@@ -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);
}