VFS_INIT -- initialize a file system
#include <sys/param.h>
#include <sys/mount.h>
#include <sys/vnode.h>
int
VFS_INIT();
This function is called once to allow a file system to initialize any
global data structures that it might have. It is either called when the
operating system boots or, for dynamically loaded file systems, when the
kernel module containing the file system is loaded.
VFS(9), vnode(9)
This manual page was written by Doug Rabson.
FreeBSD 5.2.1 July 24, 1996 FreeBSD 5.2.1 [ Back ] |