VFS_START(9)HOME || NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHORSNAMEVFS_START -- make a file system operational SYNOPSIS #include <sys/param.h>
#include <sys/mount.h>
#include <sys/vnode.h>
int
VFS_START(struct mount *mp, int flags, struct thread *td);
DESCRIPTIONThis is called after VFS_MOUNT(9) and before the first access to the file system. Its arguments are: mp The file system. flags ?? td Thread which is starting the file system. SEE ALSOVFS(9), vnode(9) AUTHORSThis manual page was written by Doug Rabson. |