|
NAMEvput , vrele ,
vunref —
decrement the use count for a vnode
SYNOPSIS#include <sys/param.h>
#include <sys/vnode.h>
void
void
void
DESCRIPTIONDecrement the v_usecount field of a vnode.
The The The Any code in the system which signified its use of a vnode by usecount should call one of the listed function to decrement use counter. If the v_usecount field of the non-doomed vnode reaches zero, then it will be inactivated and placed on the free list. The The hold count for the vnode is always greater or equal to the usecount. Non-forced unmount fails when mount point owns a vnode that has non-zero usecount, see vflush(9). SEE ALSOvget(9), vnode(9), vref(9), vrefcnt(9)AUTHORSThis manual page was written by Doug Rabson andKonstantin Belousov.
Visit the GSP FreeBSD Man Page Interface. |