diff options
-rw-r--r-- | sys/kern/vfs_subr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index c5189ed..28fbda9 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -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; |