|
vfs_getvfs(9) -- returns a mount point given its file system identifier
|
The vfs_getvfs() function returns the mount point structure for a file system given its file system identifier. The file system ID should have been allocated by calling vfs_getnewfsid(9); otherwise, i... |
VFS_INIT(9) -- initialize a file system
|
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 sys... |
vfs_modevent(9) -- vfs configuration information
|
Each file system type known to the kernel has a vfsconf structure that contains the information required to create a new mount of that file systems type. struct vfsconf { struct vfsops *vfc_vfsops; /*... |
VFS_MOUNT(9) -- mount a file system
|
Mount a file system into the system's namespace. Its arguments are: mp Structure representing the file system. path Pathname where the file system is being mounted. data File system specific data. Th... |
vfs_mount(9) -- generic file system mount function
|
The vfs_mount() function handles the generic portion of mounting a file system, and calls the file system specific mount function after verifying its parameters and setting up the structures expected ... |
vfs_mountedon(9) -- check if the vnode belongs to a mounted file system
|
vfs_mountedon() inspects the mount structure in vp to determine if it points to a valid mount point. If the mount is valid, the vnode is considered to be busy. A common use of vfs_mountedon() is to ca... |
VFS_QUOTACTL(9) -- manipulate file system quotas
|
Implement file system quotas. See quotactl(2) for a description of the arguments. |
vfs_register(9) -- vfs configuration information
|
Each file system type known to the kernel has a vfsconf structure that contains the information required to create a new mount of that file systems type. struct vfsconf { struct vfsops *vfc_vfsops; /*... |
VFS_ROOT(9) -- return the root vnode of a file system
|
Return a locked vnode for the root directory of the file system. Its arguments are: mp The file system. vpp Return parameter for the root vnode. |
vfs_rootmountalloc(9) -- allocate a root mount structure
|
vfs_rootmountalloc() allocates a mount structure initialized from the vfsconf type that matches fstypename. |
VFS_SET(9) -- set up loadable file system vfsconf
|
VFS_SET() creates a vfsconf structure for the loadable module with the given vfsops, fsname and flags, and declares it by calling DECLARE_MODULE(9) using vfs_modevent() as the event handler. Possible ... |
VFS_START(9) -- make a file system operational
|
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_STATFS(9) -- return file system status
|
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 th... |