VFS_START -- make a file system operational
#include <sys/param.h>
#include <sys/mount.h>
#include <sys/vnode.h>
int
VFS_START(struct mount *mp, int flags, struct thread *td);
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.
VFS(9), vnode(9)
This manual page was written by Doug Rabson.
FreeBSD 5.2.1 July 24, 1996 FreeBSD 5.2.1 [ Back ] |