CVSROOT: /cvs Module name: src Changes by: h...@cvs.openbsd.org 2018/06/21 08:53:36
Modified files: sys/miscfs/fuse: fuse_device.c fuse_lookup.c fusebuf.c fusefs.h Log message: Don't timeout on fb_queue(9). The current process will block indefinitely and cannot be interrupted or killed. This is consistent with how VFS system calls should behave. If the file system becomes unresponsive then the only sane solution is for the user to kill the file system daemon. Implementing the equivalent of nfs -osoft or -ointr to either timeout or allow the blocking FUSE operation to be interrupted can be considered in a future patch. ok mpi@