VFS_ROOT -- return the root vnode of a file system
#include <sys/param.h>
#include <sys/mount.h>
#include <sys/vnode.h>
int
VFS_ROOT(struct mount *mp, struct vnode **vpp);
Return a locked vnode for the root directory of the file system.
Its arguments are:
mp The file system.
vpp Return parameter for the root vnode.
VFS(9), vnode(9)
This manual page was written by Doug Rabson.
FreeBSD 5.2.1 July 24, 1996 FreeBSD 5.2.1 [ Back ] |