VFS_START(9)

HOME || NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHORS
NAME
     VFS_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);
DESCRIPTION
     This 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 ALSO
     VFS(9), vnode(9)
AUTHORS
     This manual page was written by Doug Rabson.