diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2016-06-19 10:21:57 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2016-06-19 10:21:57 +0000 |
commit | 58989698e1813e154bd59c705d0ed1db5f5ce8a7 (patch) | |
tree | 5c4d8aa16f174ef12263d5e667bf7607e066360e /sys/ufs/ext2fs | |
parent | 0c28188a70a32c60331fbd816d3dd318b3672bd3 (diff) |
add pool_setipl on all pools.
ok tedu@ visa@
Diffstat (limited to 'sys/ufs/ext2fs')
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_vfsops.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_vfsops.c b/sys/ufs/ext2fs/ext2fs_vfsops.c index c518338b546..12a09b23565 100644 --- a/sys/ufs/ext2fs/ext2fs_vfsops.c +++ b/sys/ufs/ext2fs/ext2fs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_vfsops.c,v 1.91 2016/05/22 20:27:04 bluhm Exp $ */ +/* $OpenBSD: ext2fs_vfsops.c,v 1.92 2016/06/19 10:21:56 dlg Exp $ */ /* $NetBSD: ext2fs_vfsops.c,v 1.1 1997/06/11 09:34:07 bouyer Exp $ */ /* @@ -95,8 +95,10 @@ ext2fs_init(struct vfsconf *vfsp) { pool_init(&ext2fs_inode_pool, sizeof(struct inode), 0, 0, PR_WAITOK, "ext2inopl", NULL); + pool_setipl(&ext2fs_inode_pool, IPL_NONE); pool_init(&ext2fs_dinode_pool, sizeof(struct ext2fs_dinode), 0, 0, PR_WAITOK, "ext2dinopl", NULL); + pool_setipl(&ext2fs_dinode_pool, IPL_NONE); return (ufs_init(vfsp)); } |