HomeSort by: relevance | last modified time | path
    Searched defs:vfs_fhtovp (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/sys/
mount.h 203 int (*vfs_fhtovp) (struct mount *, struct fid *, int, member in struct:vfsops
242 int VFS_FHTOVP(struct mount *, struct fid *, int, struct vnode **);
383 int vfs_fhtovp(fhandle_t *, struct vnode **);
  /src/sys/kern/
vfs_syscalls.c 2006 * vfs_fhtovp: lookup a vnode by a filehandle.
2010 vfs_fhtovp(fhandle_t *fhp, struct vnode **vpp) function in typeref:typename:int
2021 if (mp->mnt_op->vfs_fhtovp == NULL) {
2025 error = VFS_FHTOVP(mp, FHANDLE_FILEID(fhp), LK_EXCLUSIVE, vpp);
2194 error = vfs_fhtovp(fh, &vp);
2278 error = vfs_fhtovp(fh, &vp);
2327 error = vfs_fhtovp(fh, &vp);

Completed in 15 milliseconds