diff --git a/sys/fs/fuse/fuse_vnops.c b/sys/fs/fuse/fuse_vnops.c index 86c01e6d5f45..bac6b00c9901 100644 --- a/sys/fs/fuse/fuse_vnops.c +++ b/sys/fs/fuse/fuse_vnops.c @@ -797,12 +797,7 @@ fuse_vnop_lookup(struct vop_lookup_args *ap) /* Cache timeout */ atomic_add_acq_long(&fuse_lookup_cache_misses, 1); - /* - * XXX is fuse_internal_vnode_disappear ok to - * call if another process is still using the - * vnode? - */ - fuse_internal_vnode_disappear(*vpp); + cache_purge(*vpp); if (dvp != *vpp) vput(*vpp); else