|
VOP_READLINK(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
VOP_REALLOCBLKS(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
|
VOP_RECLAIM(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
VOP_REMOVE(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
VOP_REVOKE(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
VOP_RMDIR(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
VOP_SETEXTATTR(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
VOP_STRATEGY(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
VOP_SYMLINK(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
VOP_UNLOCK(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
VOP_WHITEOUT(9) -- vnode operations
|
The VOP functions implement a generic way to perform operations on vnodes. The VOP function called passes the arguments to the correct file system specific function. Not all file systems implement all... |
vprintf(9) -- kernel formatted output conversion
|
The printf(), snprintf(), vprintf(), vsnprintf(), uprintf(), ttyprintf(), and db_printf() functions allow the kernel to send formatted messages to various output devices. The functions printf() and vp... |
vput(9) -- decrement the reference count for a vnode and unlock it
|
Decrement the v_usecount field of the vnode vp and unlock the vnode. This operation is functionally equivalent to calling VOP_UNLOCK() followed by vrele(9). |
vrecycle(9) -- recycle a vnode if its reference count is zero
|
The vrecycle() function places the vnode vp on the free list using vgonel(9) if its v_usecount field is zero. If v_usecount is non-zero, it simply returns. If v_usecount is zero and an interlock inter... |
vref(9) -- increment the use count for a vnode
|
Increment the v_usecount field of the vnode specified by vp. Each vnode maintains a reference count of how many parts of the system are using the vnode. This allows the system to detect when a vnode i... |