Correct the comment: numvnodes is decreased on vdestroying the vnode.

OKed by:	tegge
Approved by:	pjd (mentor)
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2006-10-02 07:25:58 +00:00
parent 5d8ea5963c
commit 45ea8737bf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=162945

View File

@ -124,7 +124,8 @@ SYSCTL_INT(_debug, OID_AUTO, mpsafevfs, CTLFLAG_RD, &mpsafe_vfs, 0,
/*
* Number of vnodes in existence. Increased whenever getnewvnode()
* allocates a new vnode, never decreased.
* allocates a new vnode, decreased on vdestroy() called on VI_DOOMed
* vnode.
*/
static unsigned long numvnodes;