Index: udf/udf_vfsops.c =================================================================== RCS file: /cvs/src/sys/isofs/udf/udf_vfsops.c,v retrieving revision 1.53 diff -u -p -r1.53 udf_vfsops.c --- udf/udf_vfsops.c 13 Aug 2016 20:53:17 -0000 1.53 +++ udf/udf_vfsops.c 24 Aug 2016 07:08:11 -0000 @@ -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); }