VFS_UNMOUNT -- unmount a file system
#include <sys/param.h>
#include <sys/mount.h>
#include <sys/vnode.h>
int
VFS_UNMOUNT(struct mount *mp, int mntflags, struct thread *td);
Unmount a file system.
Its arguments are:
mp The file system.
mntflags Various flags.
td Thread which is unmounting the file system.
If the MNT_FORCE flag is specified then open files should be forcibly
closed.
vflush(9), VFS(9), vnode(9)
This manual page was written by Doug Rabson.
FreeBSD 5.2.1 July 24, 1996 FreeBSD 5.2.1 [ Back ] |