| /src/sys/rump/librump/rumpvfs/ | 
| rump_vfs.c | 419 	rv = VFS_ROOT(mp, LK_EXCLUSIVE, vpp); 
 | 
| /src/sys/sys/ | 
| mount.h | 193 	int	(*vfs_root)	(struct mount *, int, struct vnode **);  member in struct:vfsops 238 int	VFS_ROOT(struct mount *, int, struct vnode **);
 
 | 
| /src/sys/nfs/ | 
| nfs_export.c | 763 	if ((error = VFS_ROOT(mp, LK_EXCLUSIVE, &rvp))) 
 | 
| /src/sys/fs/autofs/ | 
| autofs_vnops.c | 186 	error = VFS_ROOT(vp->v_mountedhere, LK_EXCLUSIVE, newvp); 188 		AUTOFS_WARN("VFS_ROOT() failed with error %d", error);
 
 | 
| /src/sys/kern/ | 
| vfs_mount.c | 732 	if (VFS_ROOT(olddp->v_mountedhere, LK_EXCLUSIVE, &newdp)) 1348 		 * with VFS_ROOT().
 1350 		error = VFS_ROOT(mp, LK_NONE, &rootvnode);
 
 | 
| vfs_subr.c | 1535 VFS_ROOT(struct mount *mp, int lktype, struct vnode **a) 1542 	error = (*(mp->mnt_op->vfs_root))(mp, lktype, a);
 
 | 
| vfs_lookup.c | 979 			error = VFS_ROOT(mp, LK_NONE, &vp); 
 | 
| vfs_syscalls.c | 1531 		error = VFS_ROOT(mp, LK_SHARED, &tdp); 
 | 
| /src/sys/fs/adosfs/ | 
| advfsops.c | 265 	if ((error = VFS_ROOT(mp, LK_EXCLUSIVE, &rvp)) != 0) 794 	.vfs_root = adosfs_root,
 
 | 
| /src/sys/ufs/ffs/ | 
| ffs_wapbl.c | 655 	if ((error = VFS_ROOT(mp, LK_EXCLUSIVE, &rvp)) != 0) 
 | 
| /src/sys/ufs/lfs/ | 
| ulfs_extattr.c | 622 	error = VFS_ROOT(mp, LK_EXCLUSIVE, &rvp); 624 		printf("ulfs_extattr_autostart.VFS_ROOT() returned %d\n",
 
 | 
| /src/sys/ufs/ufs/ | 
| ufs_extattr.c | 643 	error = VFS_ROOT(mp, LK_EXCLUSIVE, &rvp); 645 		printf("%s: VFS_ROOT() (%d)\n", __func__, error);
 
 | 
| /src/sys/fs/union/ | 
| union_vnops.c | 305 		error = VFS_ROOT(mp, LK_EXCLUSIVE, &tdvp); 
 | 
| /src/share/man/man9/ | 
| Makefile | 1049 	vfsops.9 VFS_ROOT.9 \ 
 | 
| /src/sys/fs/nfs/server/ | 
| nfs_nfsdport.c | 2169 							r = VFS_ROOT(new_mp, 
 |