diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2016-08-23 04:28:19 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2016-08-23 04:28:19 +0000 |
commit | b325ba5870f4ee25538109ea7216a95beee39479 (patch) | |
tree | 1032fad72fc528fb18585bf74c989b7ab06f55f4 /sys | |
parent | 8aa8d80e0e11111c7fc0c518273b05590289c508 (diff) |
pool_setipl for tmpfs.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/tmpfs/tmpfs_vfsops.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/tmpfs/tmpfs_vfsops.c b/sys/tmpfs/tmpfs_vfsops.c index 9d67ec19514..9197b0268d8 100644 --- a/sys/tmpfs/tmpfs_vfsops.c +++ b/sys/tmpfs/tmpfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmpfs_vfsops.c,v 1.10 2016/07/22 13:11:01 kettenis Exp $ */ +/* $OpenBSD: tmpfs_vfsops.c,v 1.11 2016/08/23 04:28:18 dlg Exp $ */ /* $NetBSD: tmpfs_vfsops.c,v 1.52 2011/09/27 01:10:43 christos Exp $ */ /* @@ -75,8 +75,10 @@ tmpfs_init(struct vfsconf *vfsp) pool_init(&tmpfs_dirent_pool, sizeof(tmpfs_dirent_t), 0, 0, PR_WAITOK, "tmpfs_dirent", NULL); + pool_setipl(&tmpfs_dirent_pool, IPL_NONE); pool_init(&tmpfs_node_pool, sizeof(tmpfs_node_t), 0, 0, PR_WAITOK, "tmpfs_node", NULL); + pool_setipl(&tmpfs_node_pool, IPL_NONE); return 0; } |