CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2018/05/19 20:51:26
Modified files:
lib/libfuse : fuse_ops.c
sys/miscfs/fuse: fuse_vnops.c fusefs.h
Log message:
Implement FBT_FLUSH. This is sent whenever a file descriptor is closed with
VOP_CLOSE(9). The associated FUSE file handle is however not closed at this
time and is instead closed on VOP_RELEASE(9) because that's the only time
it's guaranteed to be no longer used. Directory handles are now only closed
on VOP_RELEASE(9) for the same reason.
ok mpi@