VFS_STATFS(9)

HOME || NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHORS
NAME
     VFS_STATFS -- return file system status
SYNOPSIS
     #include <sys/param.h>
     #include <sys/mount.h>
     #include <sys/vnode.h>

     int
     VFS_STATFS(struct mount *mp, struct statfs *sbp, struct thread *td);
DESCRIPTION
     This call returns various pieces of information about the file system,
     including recommended I/O sizes, free space, free inodes, etc.

     Its arguments are:

     mp   The file system.

     sbp  Return parameter for the file system's status.

     td   The thread which is querying the file system.
SEE ALSO
     VFS(9), vnode(9)
AUTHORS
     This manual page was written by Doug Rabson.