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.h96 #define vn_matchops(vp, vops) ((vp)->v_op == &(vops)) argument
/freebsd/sys/sys/
H A Dvnode.h692 void cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops);
701 cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops) in cache_validate_vop_vector() argument
715 int getnewvnode(const char *tag, struct mount *mp, struct vop_vector *vops,
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_ctldir.c168 const char *tag, struct vop_vector *vops, in sfs_vgetx() argument
183 error = getnewvnode(tag, mp, vops, &vp); in sfs_vgetx()
/freebsd/sys/kern/
H A Dvfs_cache.c4176 cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops) in cache_validate_vop_vector() argument
4184 if (vops->vop_fplookup_vexec == NULL || in cache_validate_vop_vector()
4185 vops->vop_fplookup_vexec == cache_vop_bad_vexec) in cache_validate_vop_vector()
4187 vops, mp->mnt_vfc->vfc_name); in cache_validate_vop_vector()
4189 if (vops->vop_fplookup_symlink == NULL || in cache_validate_vop_vector()
4190 vops->vop_fplookup_symlink == cache_vop_bad_symlink) in cache_validate_vop_vector()
4192 vops, mp->mnt_vfc->vfc_name); in cache_validate_vop_vector()
H A Dvfs_subr.c2073 getnewvnode(const char *tag, struct mount *mp, struct vop_vector *vops, in getnewvnode() argument
2082 KASSERT(vops->registered, in getnewvnode()
2083 ("%s: not registered vector op %p\n", __func__, vops)); in getnewvnode()
2084 cache_validate_vop_vector(mp, vops); in getnewvnode()
2132 vp->v_op = vops; in getnewvnode()
2138 if (mp == NULL && vops != &dead_vnodeops) in getnewvnode()