Home
last modified time | relevance | path

Searched refs:vops (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dvnode.h95 #define vn_matchops(vp, vops) ((vp)->v_op == &(vops)) argument
/freebsd/sys/sys/
H A Dvnode.h675 void cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops);
684 cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops) in cache_validate_vop_vector() argument
698 int getnewvnode(const char *tag, struct mount *mp, struct vop_vector *vops,
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_ctldir.c167 const char *tag, struct vop_vector *vops, in sfs_vgetx() argument
182 error = getnewvnode(tag, mp, vops, &vp); in sfs_vgetx()
/freebsd/sys/kern/
H A Dvfs_cache.c4121 cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops) in cache_validate_vop_vector() argument
4129 if (vops->vop_fplookup_vexec == NULL || in cache_validate_vop_vector()
4130 vops->vop_fplookup_vexec == cache_vop_bad_vexec) in cache_validate_vop_vector()
4132 vops, mp->mnt_vfc->vfc_name); in cache_validate_vop_vector()
4134 if (vops->vop_fplookup_symlink == NULL || in cache_validate_vop_vector()
4135 vops->vop_fplookup_symlink == cache_vop_bad_symlink) in cache_validate_vop_vector()
4137 vops, mp->mnt_vfc->vfc_name); in cache_validate_vop_vector()
H A Dvfs_subr.c2065 getnewvnode(const char *tag, struct mount *mp, struct vop_vector *vops, in getnewvnode() argument
2074 KASSERT(vops->registered, in getnewvnode()
2075 ("%s: not registered vector op %p\n", __func__, vops)); in getnewvnode()
2076 cache_validate_vop_vector(mp, vops); in getnewvnode()
2124 vp->v_op = vops; in getnewvnode()
2130 if (mp == NULL && vops != &dead_vnodeops) in getnewvnode()