Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/contrib/openzfs/include/os/freebsd/spl/sys/
HDvnode.h113 #define vn_matchops(vp, vops) ((vp)->v_op == &(vops)) argument
/freebsd-14-stable/sys/sys/
HDvnode.h677 void cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops);
686 cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops) in cache_validate_vop_vector() argument
700 int getnewvnode(const char *tag, struct mount *mp, struct vop_vector *vops,
/freebsd-14-stable/sys/contrib/openzfs/module/os/freebsd/zfs/
HDzfs_ctldir.c167 const char *tag, struct vop_vector *vops, in sfs_vgetx() argument
182 error = getnewvnode(tag, mp, vops, &vp); in sfs_vgetx()
/freebsd-14-stable/sys/kern/
HDvfs_cache.c4034 cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops) in cache_validate_vop_vector() argument
4042 if (vops->vop_fplookup_vexec == NULL || in cache_validate_vop_vector()
4043 vops->vop_fplookup_vexec == cache_vop_bad_vexec) in cache_validate_vop_vector()
4045 vops, mp->mnt_vfc->vfc_name); in cache_validate_vop_vector()
4047 if (vops->vop_fplookup_symlink == NULL || in cache_validate_vop_vector()
4048 vops->vop_fplookup_symlink == cache_vop_bad_symlink) in cache_validate_vop_vector()
4050 vops, mp->mnt_vfc->vfc_name); in cache_validate_vop_vector()
HDvfs_subr.c2038 getnewvnode(const char *tag, struct mount *mp, struct vop_vector *vops, in getnewvnode() argument
2047 KASSERT(vops->registered, in getnewvnode()
2048 ("%s: not registered vector op %p\n", __func__, vops)); in getnewvnode()
2049 cache_validate_vop_vector(mp, vops); in getnewvnode()
2097 vp->v_op = vops; in getnewvnode()
2103 if (mp == NULL && vops != &dead_vnodeops) in getnewvnode()