CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2016/08/12 14:18:44
Modified files:
sys/miscfs/fuse: fuse_lookup.c fuse_vfsops.c fuse_vnops.c
fusefs_node.h
Log message:
Dedup vnode type information. Fuse stores the vnode type in two places:
vtype in struct fusefs_node and v_type in struct vnode. Given the fact,
that fusefs_node structs are never allocated without an associated vnode
and those two fields are always in sync, one of those locations is
superfluous.
While there remove the unused nlookup field.
ok mpi