From: tedu Date: Tue, 23 Dec 2014 04:53:20 +0000 (+0000) Subject: convert from nointr to waitok X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=0c632275634ac9fcaf2a9711ed817f35ad04db18;p=openbsd convert from nointr to waitok --- diff --git a/sys/miscfs/fuse/fuse_vfsops.c b/sys/miscfs/fuse/fuse_vfsops.c index 6c8f5cc73df..7b5d46a07e2 100644 --- a/sys/miscfs/fuse/fuse_vfsops.c +++ b/sys/miscfs/fuse/fuse_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fuse_vfsops.c,v 1.13 2014/12/16 18:30:04 tedu Exp $ */ +/* $OpenBSD: fuse_vfsops.c,v 1.14 2014/12/23 04:53:20 tedu Exp $ */ /* * Copyright (c) 2012-2013 Sylvestre Gallon * @@ -305,8 +305,8 @@ int fusefs_vptofh(struct vnode *vp, struct fid *fhp) int fusefs_init(struct vfsconf *vfc) { - pool_init(&fusefs_fbuf_pool, sizeof(struct fusebuf), 0, 0, 0, - "fmsg", &pool_allocator_nointr); + pool_init(&fusefs_fbuf_pool, sizeof(struct fusebuf), 0, 0, PR_WAITOK, + "fmsg", NULL); return (0); }