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.h117 #define vn_matchops(vp, vops) ((vp)->v_op == &(vops)) argument
/freebsd/sys/sys/
H A Dvnode.h674 void cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops);
683 cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops) in cache_validate_vop_vector() argument
697 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.c4091 cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops) in cache_validate_vop_vector() argument
4099 if (vops->vop_fplookup_vexec == NULL || in cache_validate_vop_vector()
4100 vops->vop_fplookup_vexec == cache_vop_bad_vexec) in cache_validate_vop_vector()
4102 vops, mp->mnt_vfc->vfc_name); in cache_validate_vop_vector()
4104 if (vops->vop_fplookup_symlink == NULL || in cache_validate_vop_vector()
4105 vops->vop_fplookup_symlink == cache_vop_bad_symlink) in cache_validate_vop_vector()
4107 vops, mp->mnt_vfc->vfc_name); in cache_validate_vop_vector()
H A Dvfs_subr.c2036 getnewvnode(const char *tag, struct mount *mp, struct vop_vector *vops, in getnewvnode() argument
2045 KASSERT(vops->registered, in getnewvnode()
2046 ("%s: not registered vector op %p\n", __func__, vops)); in getnewvnode()
2047 cache_validate_vop_vector(mp, vops); in getnewvnode()
2095 vp->v_op = vops; in getnewvnode()
2101 if (mp == NULL && vops != &dead_vnodeops) in getnewvnode()